-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·45 lines (44 loc) · 909 Bytes
/
Copy pathpackage.json
File metadata and controls
executable file
·45 lines (44 loc) · 909 Bytes
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
{
"name": "ChineseInputAssistant",
"displayName": "中文代码快速补全",
"description": "中文变量名方法名在拼音字母下提示并快速输入",
"version": "1.0.0",
"publisher": "CodeInChinese",
"engines": {
"vscode": "^1.38.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*",
"onCommand:插件命令"
],
"main": "./插件.js",
"contributes": {
"commands": [
{
"command": "插件命令",
"title": "中文插件"
}
]
},
"scripts": {
"test": "node ./test/runTest.js"
},
"repository": {
"type": "git",
"url": "https://github.com/nobodxbodon/vscode_Chinese_Input_Assistant.git"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.6",
"@types/node": "^10.12.21",
"@types/vscode": "^1.38.0",
"eslint": "^5.13.0",
"glob": "^7.1.4",
"mocha": "^6.1.4",
"typescript": "^3.3.1",
"vscode-test": "^1.2.0"
}
}