forked from xy-sea/web-see
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.53 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
57
58
59
60
{
"name": "web-see",
"version": "1.1.0",
"description": "监控SDK,一款自研的前端监控SDK,可用来收集并上报:代码报错、性能数据、用户行为、加载资源、个性化指标等数据",
"main": "dist/index.min.js",
"module": "dist/index.esm.js",
"scripts": {
"build": "webpack",
"build:dev": "rollup -w -c",
"build:rollup": "rollup -c",
"prepare": "husky install",
"commit": "git-cz"
},
"files": [
"dist"
],
"keywords": [
"web see",
"web monitor",
"web see sdk"
],
"author": "海阔天空",
"license": "ISC",
"dependencies": {
"core-js": "^3.19.1",
"error-stack-parser": "^2.1.4",
"js-base64": "^3.7.3",
"pako": "^2.1.0",
"path-to-regexp": "^6.2.0",
"rrweb": "^1.1.3",
"ua-parser-js": "^1.0.32",
"web-vitals": "^3.1.0"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@rollup/plugin-commonjs": "^23.0.3",
"@rollup/plugin-json": "^5.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"commitizen": "^4.2.6",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.29.0",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"prettier": "^2.8.0",
"rollup": "^2.78.0",
"rollup-plugin-uglify": "^6.0.4",
"webpack": "^4.14.0",
"webpack-cli": "^3.0.8"
},
"repository": {
"type": "git",
"url": "[email protected]:xy-sea/web-see.git"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}