-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.1 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
{
"name": "fast-code-create",
"displayName": "fast-code-create",
"description": "a code generate with vue or react",
"version": "0.1.8",
"engines": {
"vscode": "^1.0.0"
},
"categories": [
"Other"
],
"author": {
"name": "daisiyao"
},
"publisher": "daisiyao",
"repository": {
"type": "git",
"url": "https://github.com/daisybaicai/fast-code-create"
},
"activationEvents": [
"onCommand:extension.openCodeCreate"
],
"main": "./dist/index.js",
"contributes": {
"configuration": {
"type": "object",
"title": "CodeCreate设计器配置",
"properties": {
"CodeCreate.url": {
"type": "string",
"default": "http://47.92.243.227:8084",
"description": "CodeCreate设计器远程URL"
}
}
},
"commands": [
{
"command": "extension.openCodeCreate",
"title": "打开CodeCreate设计器"
}
],
"menus": {
"explorer/context": [
{
"command": "extension.openCodeCreate",
"group": "navigation"
}
]
}
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js",
"build": "rm -rf dist && rollup -c rollup.config.js",
"start": "rm -rf dist && rollup -c rollup.config.js -w",
"tag-add": "chmod +x ./create_tag.sh && ./create_tag.sh"
},
"devDependencies": {
"@babel/preset-env": "7.16.8",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-json": "^4.0.0",
"@rollup/plugin-node-resolve": "^7.1.0",
"@types/glob": "^7.1.3",
"@types/mocha": "^8.2.2",
"@types/node": "14.x",
"@types/vscode": "^1.0.0",
"eslint": "^7.27.0",
"glob": "^7.1.7",
"mocha": "^8.4.0",
"rollup": "^2.67.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"tslib": "^2.3.1",
"ttypescript": "1.5.13",
"typescript": "^4.3.2",
"vscode-test": "^1.5.2"
},
"dependencies": {
"@babel/generator": "^7.20.14",
"@babel/parser": "^7.20.13",
"@babel/template": "^7.20.7",
"@babel/traverse": "^7.20.13",
"@babel/types": "^7.20.7",
"axios": "^1.3.2",
"open": "^8.2.1",
"prettier": "^2.8.3"
}
}