-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.14 KB
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
{
"name": "web-moniter",
"version": "1.0.0",
"description": "前端监控 SDK - Monorepo",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "pnpm -r --parallel dev",
"build": "pnpm -r build",
"test": "pnpm -r test",
"clean": "pnpm -r clean",
"lint": "pnpm -r lint",
"bootstrap": "lerna bootstrap",
"version": "lerna version",
"publish": "lerna publish",
"publish:from-git": "lerna publish from-git",
"release": "npm run version && npm run publish:from-git"
},
"keywords": [
"web-monitoring",
"sdk",
"frontend",
"performance",
"error-tracking"
],
"author": "senmu",
"license": "ISC",
"packageManager": "pnpm@10.8.0",
"engines": {
"node": ">=16",
"pnpm": ">=7"
},
"devDependencies": {
"@types/jsdom": "^21.1.7",
"@types/node": "^22.14.1",
"@typescript-eslint/eslint-plugin": "^8.29.1",
"@typescript-eslint/parser": "^8.29.1",
"eslint": "^9.24.0",
"jsdom": "^26.0.0",
"lerna": "^8.2.2",
"rimraf": "^6.0.1",
"tsup": "^8.4.0",
"typescript": "^5.8.3",
"vitest": "^3.1.1"
},
"dependencies": {
"web-vitals": "^4.2.4"
}
}