-
-
Notifications
You must be signed in to change notification settings - Fork 626
/
package.json
101 lines (101 loc) · 2.66 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
{
"name": "varlet-vscode-extension",
"private": true,
"main": "./dist/extension.js",
"icon": "src/assets/icon.png",
"displayName": "varlet-vscode-extension",
"description": "varlet extension for vscode",
"publisher": "haoziqaq",
"version": "3.7.1",
"engines": {
"vscode": "^1.56.0"
},
"categories": [
"Other"
],
"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"
}
],
"menus": {
"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"
}
]
},
"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"
}
}
}
},
"activationEvents": [
"onLanguage:vue",
"onLanguage:javascript",
"onLanguage:typescript",
"onLanguage:javascriptreact",
"onLanguage:typescriptreact"
],
"repository": {
"type": "git",
"url": "git+https://github.com/varletjs/varlet.git"
},
"bugs": {
"url": "https://github.com/varletjs/varlet/issues"
},
"scripts": {
"dev": "varlet-cli dev:extension",
"build": "varlet-cli build:extension",
"release": "pnpm build && vsce package --no-dependencies && vsce publish --no-dependencies"
},
"dependencies": {
"@varlet/shared": "workspace:*",
"@varlet/icons": "workspace:*",
"@varlet/ui": "workspace:*"
},
"devDependencies": {
"@varlet/cli": "workspace:*",
"@vscode/vsce": "^2.17.0",
"@types/node": "14.x",
"@types/vscode": "^1.56.0",
"typescript": "5.3.3"
}
}