-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 1.96 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
{
"name": "devuihelper",
"description": "DevUI_Helper",
"author": "yqLiu",
"license": "MIT",
"version": "4.4.1",
"icon": "DevUI.png",
"repository": {
"type": "git",
"url": "https://github.com/sspku-yqLiu/DevUIHelper-LSP"
},
"publisher": "sspkuDevUI",
"categories": [],
"keywords": [
"multi-root ready"
],
"engines": {
"vscode": "^1.33.0"
},
"activationEvents": [
"onLanguage:html"
],
"contributes": {
"configuration": {
"title": "DevUIHelper",
"properties": {
"DevUIHelper.provideHover": {
"type": "boolean",
"default": true,
"description": "是否需要悬浮提示 默认为是"
},
"DevUIHelper.language": {
"type": "string",
"default": "zh-CN",
"description": "使用何种语言进行提示,可选'zh-CN'"
},
"DevUIHelper.completionSetting": {
"type": "string",
"default": "OnlyNecessary",
"enum": [
"OnlyNecessary",
"Recommend&Necessary",
"OnlyTag "
],
"enumDescriptions": [
"仅提示必要的属性",
"提示组件库建议的以及必要的属性",
"仅提示Tag"
]
}
}
}
},
"main": "./client/out/extension",
"scripts": {
"compile": "tsc -b",
"watch": "tsc -b -w",
"postinstall": "cd client && npm install && cd ../server && npm install && cd ..",
"test": "sh ./scripts/e2e.sh"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-node-resolve": "^8.1.0",
"@types/jasmine": "3.5.9",
"@types/node": "^12.12.30",
"clang-format": "1.4.0",
"jasmine": "3.5.0",
"prettier": "1.19.1",
"rollup": "^2.0.6",
"tslint": "6.1.0",
"tslint-eslint-rules": "5.4.0",
"vsce": "^1.74.0"
},
"dependencies": {
"tsc": "^1.20150623.0",
"typescript": "^3.9.6"
},
"__npminstall_done": false
}