-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathpackage.json
70 lines (70 loc) · 1.48 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
{
"name": "form-generator-plugin",
"displayName": "Form Generator Plugin",
"description": "Element UI可视化表单设计及代码生成器",
"version": "1.0.4",
"engines": {
"vscode": "^1.0.0"
},
"categories": [
"Other"
],
"author": {
"name": "JakHuang"
},
"activationEvents": [
"onCommand:extension.openFormGenerator"
],
"icon": "images/logo.png",
"main": "./extension.js",
"publisher": "jakHuang",
"homepage": "https://github.com/JakHuang/form-generator-plugin/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/JakHuang/form-generator-plugin"
},
"contributes": {
"configuration": {
"type": "object",
"title": "表单设计器配置",
"properties": {
"openFormGenerator.src": {
"type": "string",
"default": "https://mrhj.gitee.io/form-generator-plugin-page-2/#/",
"description": "设计器远程链接"
}
}
},
"commands": [
{
"command": "extension.openFormGenerator",
"title": "打开表单设计器"
}
],
"menus": {
"explorer/context": [
{
"command": "extension.openFormGenerator",
"group": "navigation"
}
]
}
},
"scripts": {
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.7",
"@types/node": "^12.11.7",
"@types/vscode": "^1.0.0",
"eslint": "^6.6.0",
"glob": "^7.1.5",
"mocha": "^6.2.2",
"typescript": "^3.6.4",
"vscode-test": "^1.2.2"
},
"dependencies": {
"open": "^7.0.0"
}
}