-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
97 lines (97 loc) · 2.7 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
{
"name": "google-input-tools",
"displayName": "Google Input Tools",
"description": "Google Input Tools for Code",
"version": "0.0.25",
"publisher": "varunkumar",
"author": "Varunkumar Nagarajan (வருண்குமார் நாகராஜன்)",
"engines": {
"vscode": "^1.64.0"
},
"sponsor": {
"url": "https://github.com/sponsors/varunkumar"
},
"categories": [
"Formatters",
"Other",
"Language Packs"
],
"activationEvents": [
"onStartupFinished"
],
"icon": "assets/images/logo.png",
"repository": {
"type": "git",
"url": "https://github.com/varunkumar/google-input-tools"
},
"main": "src/extension",
"browser": "dist/web/extension.js",
"contributes": {
"commands": [
{
"command": "extension.googleInputTools",
"title": "Toggle Google Input Tools",
"icon": "assets/images/logo.png"
}
],
"keybindings": [
{
"command": "extension.googleInputTools",
"key": "ctrl+shift+i",
"mac": "cmd+shift+i",
"when": "editorTextFocus"
}
],
"configuration": {
"title": "Google Input Tools",
"properties": {
"google.input.tools.language": {
"type": "string",
"description": "ISO 639-1 Code of language to transliterate to.",
"default": "ta"
},
"google.input.tools.suggestions": {
"type": "integer",
"description": "Number of suggestions to show for the word.",
"default": 5
}
}
},
"menus": {
"touchBar": [
{
"command": "extension.googleInputTools",
"when": "editorHasCompletionItemProvider && editorTextFocus && !editorReadonly",
"group": "google-input-tools-group"
}
]
}
},
"scripts": {
"test": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=. --extensionTestsPath=dist/web/test/suite/index.js",
"pretest": "npm run compile-web",
"vscode:prepublish": "npm run package-web",
"compile-web": "webpack",
"watch-web": "webpack --watch",
"package-web": "webpack --mode production --devtool hidden-source-map",
"lint": "eslint src",
"run-in-browser": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=. ."
},
"devDependencies": {
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.15",
"@types/vscode": "^1.64.0",
"eslint": "^8.8.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"mocha": "~9.2.0",
"nanoid": "~3.2.0",
"@vscode/test-web": "^0.0.29",
"ts-loader": "^9.3.1",
"webpack": "^5.76.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"node-fetch": "^2.6.7"
}
}