-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.76 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
{
"publisher": "linghaosu",
"name": "regex-visualizer",
"displayName": "Regex Visualizer",
"version": "0.0.6",
"packageManager": "pnpm@10.33.0",
"description": "",
"author": {
"email": "slh001@live.cn",
"name": "linghao.su"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/linghaoSu/vscode-regex-visualizer"
},
"main": "./dist/index.cjs",
"icon": "resources/icon.png",
"engines": {
"vscode": "^1.68.0",
"node": ">=20"
},
"activationEvents": [
"onStartupFinished"
],
"scripts": {
"dev": "tsdown --watch",
"pack": "vsce package --no-dependencies --allow-package-secrets privatekey",
"lint": "eslint .",
"test": "vitest",
"build": "tsdown",
"check": "pnpm run typecheck && pnpm run lint",
"changelog": "changelogen --output CHANGELOG.md --no-commit",
"release": "pnpm run check && bumpp --commit --push --tag --all --execute \"pnpm run changelog\"",
"release:pre": "pnpm run check && bumpp prerelease --preid beta --commit --push --tag --all --execute \"pnpm run changelog\"",
"publish": "vsce publish --no-dependencies --allow-package-secrets privatekey",
"publish:pre": "vsce publish --pre-release --no-dependencies --allow-package-secrets privatekey",
"typecheck": "tsc --noEmit",
"vscode:prepublish": "pnpm build"
},
"devDependencies": {
"@antfu/eslint-config": "^8.2.0",
"@types/node": "^25.6.0",
"@types/vscode": "^1.68.0",
"@vscode/vsce": "^3.9.0",
"bumpp": "^11.0.1",
"changelogen": "^0.6.2",
"eslint": "^10.2.0",
"happy-dom": "^8.9.0",
"lodash-es": "^4.17.21",
"lodash-unified": "^1.0.3",
"svg-path-bbox": "^1.2.6",
"tsdown": "^0.21.8",
"typescript": "^5.9.3",
"vitest": "^4.1.4"
}
}