-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.65 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.65 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
{
"name": "vsix-manifest-designer",
"displayName": "VSIX Manifest Designer",
"description": "A visual designer for VS Code extension manifest (package.json) files",
"version": "0.0.1",
"publisher": "CodingWithCalvin",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/CodingWithCalvin/VSC-VsixManifestDesigner"
},
"engines": {
"vscode": "^1.85.0"
},
"icon": "resources/logo.png",
"categories": [
"Other"
],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"customEditors": [
{
"viewType": "vsixManifestDesigner.editor",
"displayName": "Extension Manifest Designer",
"selector": [
{
"filenamePattern": "package.json"
}
],
"priority": "option"
}
]
},
"scripts": {
"vscode:prepublish": "npm run build",
"build": "npm run build:extension && npm run build:webview",
"build:extension": "tsx esbuild.ts",
"build:webview": "cd webview-ui && npm ci && npm run build",
"watch": "tsx esbuild.ts --watch",
"watch:webview": "cd webview-ui && npm run dev",
"install:all": "npm install && cd webview-ui && npm install",
"package": "vsce package",
"lint": "eslint src --ext ts",
"test": "vitest run",
"test:watch": "vitest"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/vscode": "^1.85.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vscode/vsce": "^2.22.0",
"esbuild": "^0.19.8",
"eslint": "^8.0.0",
"tsx": "^4.7.0",
"typescript": "^5.3.2",
"vitest": "^1.1.0"
}
}