-
Notifications
You must be signed in to change notification settings - Fork 133
/
package.json
45 lines (45 loc) · 1.39 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
{
"name": "code-inspector",
"version": "0.0.1",
"repository": "[email protected]:zh-lx/code-inspector.git",
"author": "zh-lx <[email protected]>",
"license": "MIT",
"homepage": "https://inspector.fe-dev.cn/en",
"description": "Click the dom on the page, it will open your IDE and position the cursor to the source code location of the dom.",
"keywords": [
"webpack",
"vite",
"plugin",
"vue",
"vscode",
"inspector",
"inspect"
],
"bugs": {
"url": "https://github.com/zh-lx/code-inspector/issues"
},
"scripts": {
"test": "vitest run --coverage",
"build": "pnpm --filter \"./packages/*\" run build",
"build:docs": "pnpm --filter \"./docs/*\" run docs:build && node ./scripts/zip",
"pub": "pnpm --filter \"./packages/*\" run pub",
"pub:beta": "pnpm --filter \"./packages/*\" run pub:beta --no-git-checks",
"version:major": "node ./scripts/version major",
"version:minor": "node ./scripts/version minor",
"version:patch": "node ./scripts/version patch",
"version:prod": "node ./scripts/version prod",
"version:beta": "node ./scripts/version beta"
},
"private": true,
"main": "index.js",
"devDependencies": {
"@vitest/coverage-v8": "2.1.4",
"fs-extra": "^10.0.0",
"husky": "^8.0.3",
"jsdom": "^25.0.1",
"launch-ide": "1.0.1",
"rimraf": "^5.0.5",
"vitest": "^2.1.4",
"zip-a-folder": "^3.1.7"
}
}