-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
112 lines (112 loc) · 3.42 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "language-gettext",
"displayName": "gettext",
"description": "Gettext PO files language support for Visual Studio Code",
"version": "0.5.0",
"publisher": "mrorz",
"contributors": [
"Quentin L"
],
"license": "MIT",
"categories": [
"Programming Languages"
],
"repository": {
"type": "git",
"url": "/~https://github.com/MrOrz/vscode-gettext.git"
},
"bugs": {
"url": "/~https://github.com/MrOrz/vscode-gettext/issues"
},
"main": "./out/src/vscgettext",
"engines": {
"vscode": "^1.50.0"
},
"activationEvents": [
"onCommand:vscgettext.moveToNextUntranslated",
"onCommand:vscgettext.moveToPreviousUntranslated",
"onCommand:vscgettext.moveToNextFuzzy",
"onCommand:vscgettext.moveToPreviousFuzzy",
"onCommand:vscgettext.moveToNextUntranslatedOrFuzzy",
"onCommand:vscgettext.moveToPreviousUntranslatedOrFuzzy",
"onLanguage:po",
"onLanguage:pot",
"onLanguage:potx"
],
"contributes": {
"languages": [
{
"id": "po",
"aliases": [
"gettext",
"po"
],
"extensions": [
".po",
".pot",
".potx"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "po",
"scopeName": "source.po",
"path": "./syntaxes/po.tmLanguage"
}
],
"keybindings": [
{
"command": "vscgettext.moveToNextUntranslated",
"key": "alt+n",
"when": "editorTextFocus && resourceLangId == po"
},
{
"command": "vscgettext.moveToPreviousUntranslated",
"key": "alt+shift+n",
"when": "editorTextFocus && resourceLangId == po"
},
{
"command": "vscgettext.moveToNextFuzzy",
"key": "alt+f",
"when": "editorTextFocus && resourceLangId == po"
},
{
"command": "vscgettext.moveToPreviousFuzzy",
"key": "alt+shift+f",
"when": "editorTextFocus && resourceLangId == po"
},
{
"command": "vscgettext.moveToNextUntranslatedOrFuzzy",
"key": "alt+u",
"when": "editorTextFocus && resourceLangId == po"
},
{
"command": "vscgettext.moveToPreviousUntranslatedOrFuzzy",
"key": "alt+shift+u",
"when": "editorTextFocus && resourceLangId == po"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js",
"lint": "tslint src/**/*.ts test/*.ts"
},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/glob": "^8.0.0",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.0",
"@types/vscode": "^1.50.0",
"@vscode/test-electron": "^2.1.5",
"chai": "^4.3.6",
"glob": "^8.0.3",
"mocha": "^10.1.0",
"tslint": "^6.1.3",
"typescript": "^4.8.4"
}
}