This repository has been archived by the owner on Jul 14, 2020. It is now read-only.
forked from nobodxbodon/vscode_Chinese_Input_Assistant
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
executable file
·81 lines (81 loc) · 2.29 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
{
"name": "ChineseInputAssistant",
"displayName": "中文代码快速补全",
"description": "中文标识符(变量、方法名等)无需切换中文输入法即有补全提示",
"version": "1.1.1",
"publisher": "CodeInChinese",
"engines": {
"vscode": "^1.38.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*",
"onCommand:插件命令"
],
"main": "./插件.js",
"contributes": {
"commands": [
{
"command": "插件命令",
"title": "中文插件"
}
],
"configuration": {
"title": "中文代码快速补全",
"properties": {
"中文代码快速补全.提示方式": {
"type": "string",
"default": "全拼",
"enum": [
"全拼",
"五笔98全码",
"五笔98四码",
"五笔86全码",
"五笔86四码",
"小鹤双拼",
"搜狗双拼",
"微软双拼",
"自然码双拼",
"紫光双拼",
"拼音加加双拼"
],
"enumDescriptions": []
}
}
},
"snippets": [
{
"language": "javascript",
"path": "./片段/javascript.json"
},
{
"language": "python",
"path": "./片段/python.json"
}
]
},
"scripts": {
"test": "node ./test/runTest.js"
},
"repository": {
"type": "git",
"url": "https://github.com/program-in-chinese/vscode_Chinese_Input_Assistant.git"
},
"dependencies": {
"pinyin-data": "1.0.0",
"wubi-code-data": "1.0.2"
},
"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"
}
}