-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 2.81 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "vscode-webview-vite-vue-boilerplate",
"displayName": "vscode-webview-vite-vue-boilerplate",
"description": "vscode-webview-vite-vue-boilerplate",
"keywords": [
"vscode",
"webview",
"vite",
"vue",
"boilerplate"
],
"version": "0.0.1",
"publisher": "crper",
"engines": {
"vscode": "^1.75.0"
},
"author": {
"name": "crper",
"url": "https://github.com/crper"
},
"repository": {
"url": "https://github.com/crper/vscode-webview-vite-vue-boilerplate",
"type": "git"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "vscode-webview-vite-vue-boilerplate.pageShow",
"title": "vite-vue-boilerplate: Show Page"
}
],
"menus": {
"editor/context": [
{
"group": "navigation",
"command": "vscode-webview-vite-vue-boilerplate.pageShow"
}
]
},
"keybindings": [
{
"command": "vscode-webview-vite-vue-boilerplate.pageShow",
"key": "cmd+g cmd+t",
"mac": "cmd+g cmd+t",
"win": "ctrl+g ctrl+t",
"when": "editorTextFocus"
}
],
"icon": "resource/extension-icon.svg",
"viewsContainers": {
"activitybar": [
{
"id": "vite-panel-explorer",
"title": "Vite Vue Panel",
"icon": "resource/extension-icon.svg"
}
]
},
"viewsWelcome": [
{
"view": "gte",
"contents": "Vite Panel Explorer , amazing !!! \n [View Content](command:vscode-webview-vite-vue-boilerplate.pageShow)"
}
],
"views": {
"vite-panel-explorer": [
{
"id": "gte",
"name": "show vite panel "
}
]
}
},
"scripts": {
"install:all": "pnpm install && cd webview-ui && pnpm install",
"dev": "concurrently \"pnpm run dev:webview\" \"pnpm run watch\"",
"build": "pnpm run build:webview ",
"dev:web": "cd webview-ui && pnpm run dev",
"dev:webview": "cd webview-ui && pnpm run build:watch",
"build:webview": "cd webview-ui && pnpm run build",
"pack:vsix": "pnpm build && vsce package --no-dependencies",
"vscode:prepublish": "pnpm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "pnpm run compile && pnpm run lint",
"lint": "eslint src --ext ts",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/vscode": "^1.75.0",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"@vscode/test-cli": "^0.0.8",
"@vscode/test-electron": "^2.3.9",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"typescript": "^5.3.3"
}
}