-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.77 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
{
"name": "kb-layout-switcher",
"displayName": "Keyboard layout switcher",
"description": "Changes keyboard layout of selected text",
"version": "0.1.3",
"publisher": "kleach",
"galleryBanner": {
"color": "#0A1E26",
"theme": "dark"
},
"icon": "img/logo.png",
"badges": [{
"url": "https://travis-ci.com/kleach/vs-code-kb-layout-switcher.svg?branch=master",
"href": "https://travis-ci.com/kleach/vs-code-kb-layout-switcher",
"description": "Travis-CI build"
}],
"repository": {
"url": "https://github.com/kleach/vs-code-kb-layout-switcher"
},
"engines": {
"vscode": "^1.32.0"
},
"categories": [
"Other"
],
"keywords": [
"keyboard",
"layout",
"language",
"typo",
"mistake"
],
"activationEvents": [
"onCommand:kb-layout-switcher.switch"
],
"main": "./out/extension",
"contributes": {
"commands": [{
"command": "kb-layout-switcher.switch",
"title": "Switch keyboard layout"
}]
},
"scripts": {
"vscode:prepublish": "yarn compile",
"compile": "tsc -p ./",
"lint": "eslint . --ext .ts,.tsx",
"watch": "tsc -watch -p ./",
"pretest": "yarn compile && yarn lint",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.2",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.11",
"@types/vscode": "^1.32.0",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"eslint": "^7.1.0",
"glob": "^7.1.6",
"mocha": "^10.2.0",
"typescript": "^3.9.5",
"vscode-test": "^1.4.0"
}
}