forked from yfzhao20/Shift-IM-for-VSCode
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.27 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
{
"name": "shift-im-for-math",
"displayName": "Shift IM for Math",
"description": "An extension for automatically shift IM(Input Method) mode. Make it easier to input LaTeX in VSCode.",
"version": "0.0.8",
"keywords": [
"input method",
"latex",
"markdown",
"typst"
],
"os": [
"win32"
],
"contributes": {
"commands":[
{
"command": "shiftIm.debug",
"title": "Shift IM: Debug"
}
],
"configuration": {
"title": "Shift IM",
"properties": {
"Settings.ChineseModeCode":{
"type":"number",
"default":1025,
"description": "Set Chinese mode code. You can get the code by executing 'shiftIm.getImCode' when in Chinese mode. Default 1025"
},
"Settings.EnglishModeCode":{
"type":"number",
"default":0,
"description": "Set English mode code. You can get the code by executing 'shiftIm.getImCode' when in English mode. Default 0"
},
"Settings.GetParam":{
"type":"number",
"default": 1,
"description": "wParam: IMC_GETCONVERSIONMODE. Default 0x001 (1)"
},
"Settings.SetParam":{
"type":"number",
"default": 2,
"description": "wParam: IMC_SETCONVERSIONMODE. Default 0x002 (2)"
}
}
}
},
"preview": true,
"engines": {
"vscode": "^1.54.0"
},
"repository": {
"url": "https://github.com/yfzhao20/Shift-IM-for-VSCode"
},
"bugs": {
"url": "https://github.com/yfzhao20/Shift-IM-for-VSCode/issues"
},
"categories": [
"Other"
],
"publisher": "yfzhao",
"icon": "images/icon.ico",
"activationEvents": [
"onLanguage:markdown",
"onLanguage:latex",
"onLanguage:typst"
],
"main": "./src/extension.js",
"extensionDependencies": [
"yfzhao.hscopes-booster"
],
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.0",
"@types/node": "14.x",
"@types/vscode": "^1.54.0",
"@vscode/test-electron": "^2.1.2",
"eslint": "^8.9.0",
"glob": "^7.2.0",
"mocha": "^9.2.1",
"typescript": "^4.5.5"
},
"dependencies": {
"koffi": "^2.6.6"
}
}