-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
29 lines (29 loc) · 859 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"name": "tauri-plugin-sentry-api",
"version": "0.2.0",
"description": "Tauri Plugin for Sentry",
"license": "Apache-2.0 OR MIT",
"files": ["dist"],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "yarn build:ts && yarn build:rust",
"build:ts": "tsc --project ./js/tsconfig.json && rollup -c ./js/rollup.config.mjs",
"build:rust": "cargo build",
"example": "cd examples/basic-app && yarn && yarn tauri dev",
"prepublishOnly": "yarn build"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.3.0",
"@sentry/browser": "^8.34.0",
"@sentry/types": "^8.34.0",
"rollup": "^4.24.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^5.1.6"
},
"dependencies": {
"@tauri-apps/api": "2.0.0-beta.8",
"tslib": "^2.6.0"
}
}