-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
88 lines (88 loc) · 2.01 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
{
"name": "vscode-easy-plugin",
"displayName": "vscode-easy-plugin",
"description": "easywebpack vscode plugin",
"version": "1.1.0",
"icon": "images/easy.png",
"publisher": "hubcarl",
"engines": {
"vscode": "^1.30.0"
},
"categories": [
"Other"
],
"main": "./extension.js",
"activationEvents": [
"onCommand:easy-vs-cli.app.react",
"onCommand:easy-vs-cli.app.vue",
"onFileSystemAccess:vsls",
"onFileSystem:vsls",
"*"
],
"contributes": {
"views": {
"easy-vs-cli": [
{
"id": "easy-vs-cli.vue",
"name": "创建 Vue 项目"
},
{
"id": "easy-vs-cli.react",
"name": "创建 React 项目"
},
{
"id": "easy-vs-cli.doc",
"name": "开发文档"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "easy-vs-cli",
"title": "easy",
"icon": "images/easy-icon.png"
}
]
},
"configuration": {
"type": "object",
"title": "TypeScript configuration",
"properties": {
"easy.home": {
"type": "string",
"default": "",
"description": "Specifies the folder path to locate project"
}
}
}
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test",
"build": "npx vsce package",
"pub": "npx vsce publish"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^8.10.25",
"eslint": "^4.11.0",
"typescript": "^3.1.4",
"vsce": "^1.71.0",
"vscode": "^1.1.25"
},
"dependencies": {
"chalk": "^2.4.1",
"compressing": "^1.4.0",
"mz-modules": "^2.1.0",
"shelljs": "^0.8.3",
"urllib": "^2.31.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/easy-team/vscode-easy-plugin.git"
},
"author": "[email protected]",
"license": "MIT",
"homepage": "https://github.com/easy-team/vscode-easy-plugin"
}