-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.51 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "sentry-quickapp",
"version": "1.0.7",
"description": "用于快应用的 Sentry SDK",
"repository": "git://github.com/uappkit/sentry-quickapp.git",
"homepage": "https://github.com/uappkit/sentry-quickapp",
"miniprogram": "dist",
"main": "dist/index.js",
"module": "esm/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm-run-all --parallel build:min build:esm build:ts version",
"build:dist": "npm-run-all --parallel build:min",
"build:min": "webpack --config ./webpack.config.min.js",
"build:watch": "webpack --watch --config ./webpack.config.min.js",
"build:ts": "tsc -p tsconfig.json",
"build:esm": "tsc -p tsconfig.esm.json",
"version": "node ./scripts/versionbump.js src/version.ts"
},
"keywords": [
"sentry",
"uniapp",
"uniapp sentry"
],
"author": "yinqisen@gmail.com",
"license": "BSD-3-Clause",
"engines": {
"node": ">=8"
},
"devDependencies": {
"@sentry/typescript": "^5.20.0",
"@types/node": "^12.7.1",
"install": "^0.13.0",
"miniprogram-api-typings": "^2.7.7-2",
"npm": "^6.11.1",
"npm-run-all": "^4.1.5",
"replace-in-file": "^4.1.3",
"ts-loader": "^6.0.4",
"tslint": "^5.16.0",
"typescript": "^3.5.3",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.10",
"webpack-merge": "^4.2.1"
},
"dependencies": {
"@sentry/core": "6.19.7",
"@sentry/types": "6.19.7",
"@sentry/utils": "6.19.7",
"tslib": "^1.10.0"
}
}