-
-
Notifications
You must be signed in to change notification settings - Fork 632
/
Copy pathpackage.json
107 lines (107 loc) · 2.78 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
{
"name": "varlet-vscode-extension",
"displayName": "varlet-vscode-extension",
"version": "3.8.7",
"private": true,
"description": "varlet extension for vscode",
"categories": [
"Other"
],
"bugs": {
"url": "https://github.com/varletjs/varlet/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/varletjs/varlet.git"
},
"publisher": "haoziqaq",
"main": "./dist/extension.js",
"scripts": {
"build": "varlet-cli build:extension",
"dev": "varlet-cli dev:extension",
"release": "pnpm build && vsce package --no-dependencies && vsce publish --no-dependencies"
},
"contributes": {
"commands": [
{
"command": "varlet.open-documentation",
"title": "Varlet: Open Varlet UI Documentation"
},
{
"command": "varlet.open-playground",
"title": "Varlet: Open Varlet UI Playground"
},
{
"command": "varlet.open-playground-by-selection",
"title": "Varlet: Open Varlet UI Playground By Selection"
},
{
"command": "varlet.open-playground-by-selection-and-wrap-template-tag",
"title": "Varlet: Open Varlet UI Playground By Selection And Wrap Template Tag"
},
{
"command": "varlet.open-webview",
"title": "Varlet: Open Webview"
}
],
"configuration": {
"type": "object",
"title": "Varlet Extension Configuration",
"properties": {
"varlet.useChineseLanguage": {
"type": "boolean",
"default": false,
"description": "Use chinese language"
},
"varlet.useVercelOrigin": {
"type": "boolean",
"default": false,
"description": "Use vercel origin"
}
}
},
"menus": {
"commandPalette": [
{
"command": "varlet.open-webview",
"when": "false"
}
],
"editor/context": [
{
"command": "varlet.open-playground-by-selection",
"group": "navigation",
"when": "editorHasSelection"
},
{
"command": "varlet.open-playground-by-selection-and-wrap-template-tag",
"group": "navigation",
"when": "editorHasSelection"
}
]
}
},
"activationEvents": [
"onLanguage:vue",
"onLanguage:javascript",
"onLanguage:typescript",
"onLanguage:javascriptreact",
"onLanguage:typescriptreact"
],
"dependencies": {
"@varlet/icons": "workspace:*",
"@varlet/shared": "workspace:*",
"@varlet/ui": "workspace:*"
},
"devDependencies": {
"@types/node": "14.x",
"@types/vscode": "^1.56.0",
"@varlet/cli": "workspace:*",
"@vscode/vsce": "^3.2.1",
"typescript": "5.3.3"
},
"engines": {
"vscode": "^1.56.0"
},
"icon": "assets/icon.png"
}