-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.81 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.81 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
{
"publisher": "simonhe",
"name": "vscode-json-structure",
"displayName": "vscode-json-structure",
"version": "0.0.3",
"packageManager": "pnpm@8.15.9",
"description": "vscode-json-structure",
"author": "Simon He <https://github.com/Simon-He95>",
"license": "MIT",
"funding": "https://github.com/sponsors/Simon-He95",
"homepage": "https://github.com/Simon-He95/vscode-json-structure#readme",
"repository": {
"type": "git",
"url": "https://github.com/Simon-He95/vscode-json-structure"
},
"bugs": {
"url": "https://github.com/Simon-He95/vscode-json-structure/issues"
},
"sponsor": {
"url": "https://github.com/Simon-He95/sponsor"
},
"categories": [
"Other"
],
"main": "./dist/index.js",
"icon": "icon.png",
"engines": {
"vscode": "^1.103.0"
},
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"commands": [
{
"command": "vscode-json-structure.copyJsonPath",
"title": "Copy JSON Path"
}
]
},
"scripts": {
"dev": "pnpm build --watch",
"test": "vitest",
"build": "tsup src/index.ts --external vscode",
"pack": "vsce package --no-dependencies",
"lint": "eslint . --ext .vue,.js,.ts,.jsx,.tsx,.md,.json --max-warnings 0 --cache",
"lint:fix": "eslint . --ext .vue,.js,.ts,.jsx,.tsx,.md,.json --max-warnings 0 --cache --fix",
"publish": "vsce publish --no-dependencies",
"typecheck": "tsc --noEmit",
"release": "bumpp && pnpm run publish"
},
"devDependencies": {
"@antfu/eslint-config": "^5.3.0",
"@types/node": "^18.19.124",
"@types/vscode": "^1.103.0",
"@vscode-use/utils": "^0.1.59",
"@vscode/vsce": "^3.6.0",
"bumpp": "^9.11.1",
"eslint": "^9.35.0",
"json-to-ast": "^2.1.0",
"tsup": "^8.5.0",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
}
}