-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.93 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.93 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "ezmonitor",
"type": "module",
"version": "1.0.0",
"packageManager": "pnpm@10.28.2",
"description": "EzMonitor - Comprehensive front-end monitoring and error tracking SDK",
"author": "EzStars",
"license": "MIT",
"funding": "https://github.com/sponsors/ezstars",
"homepage": "https://github.com/ez-monitor/monitor#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ez-monitor/monitor.git"
},
"bugs": "https://github.com/ez-monitor/monitor/issues",
"keywords": [
"前端监控",
"前端性能监控",
"前端错误监控",
"前端埋点"
],
"main": "index.js",
"config": {
"commitizen": {
"path": "./node_modules/cz-git"
}
},
"scripts": {
"commit": "git add . && git-cz",
"build:all": "turbo run build",
"dev:monitor-sdk": "pnpm --filter @ezstars/monitor-sdkv2 run build",
"dev:monitor-app": "pnpm --filter @ezstars/monitor-app run dev",
"prepare": "simple-git-hooks",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"test": "vitest",
"typecheck": "tsc",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:",
"@codemod.com/cli-win32-x64-msvc": "catalog:",
"@typescript-eslint/eslint-plugin": "catalog:",
"@typescript-eslint/parser": "catalog:",
"codemod": "catalog:",
"commitizen": "catalog:",
"cz-git": "catalog:",
"eslint": "catalog:",
"globals": "catalog:",
"lint-staged": "catalog:",
"simple-git-hooks": "catalog:",
"tsdown": "catalog:",
"turbo": "catalog:",
"typescript": "catalog:",
"typescript-eslint": "catalog:",
"vitepress": "catalog:",
"vitest": "catalog:"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,cjs,mjs}": "eslint --fix --quiet --config eslint.config.js"
}
}