-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 895 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
30
31
32
33
34
35
36
{
"name": "web-monitor",
"type": "module",
"version": "1.0.0",
"description": "前端监控sdk",
"author": "",
"license": "ISC",
"main": "rollup.config.js",
"scripts": {
"dev": "rollup -c",
"build": "yarn lint && rollup -wc",
"lint": "eslint --fix src/"
},
"dependencies": {
"error-stack-parser": "^2.1.4",
"uuid": "^9.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.35.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/uuid": "^9.0.1",
"@typescript-eslint/parser": "^5.54.0",
"esbuild": "^0.17.5",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.4",
"rollup": "^3.12.1",
"rollup-plugin-esbuild": "^5.0.0",
"typescript": "^4.9.5"
},
"directories": {
"example": "example"
}
}