-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.28 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
53
54
55
56
{
"name": "wx-sentry",
"version": "0.0.8",
"description": "Sentry SDK for WeChat MiniApp",
"keywords": [
"wx",
"sentry",
"sdk",
"weapp",
"miniapp",
"miniprogram",
"xiaochengxu",
"小程序"
],
"author": {
"name": "Tmk",
"email": "i@tmk.im"
},
"license": "BSD-3-Clause",
"main": "dist/wx-sentry.js",
"types": "dist/wx-sentry.d.ts",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"homepage": "https://github.com/4in/wx-sentry#readme",
"repository": {
"type": "git",
"url": "https://github.com/4in/wx-sentry.git"
},
"scripts": {
"watch": "tsc -w --preserveWatchOutput",
"build": "tsc",
"check": "tsc --noEmit",
"dev": "webpack --config ./webpack/webpack.dev.js",
"bundle": "webpack --config ./webpack/webpack.prod.js",
"format": "prettier --write \"src/**/*.ts\""
},
"dependencies": {},
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"miniprogram-api-typings": "^3.2.0",
"npm-dts-webpack-plugin": "^1.3.6",
"prettier": "^2.2.1",
"ts-loader": "^8.0.12",
"typescript": "^4.1.3",
"webpack": "^5.11.0",
"webpack-cli": "^4.2.0",
"webpack-merge": "^5.7.2"
}
}