-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
86 lines (86 loc) · 2.22 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
{
"name": "logitech-craft-vscode",
"author": "David Idol",
"license": "MIT",
"publisher": "idolize",
"displayName": "Logitech Craft VS Code plugin",
"description": "Control VS Code directly using your Logitech Craft keyboard",
"version": "1.6.0",
"repository": {
"type": "git",
"url": "https://github.com/idolize/logitech-craft-vscode.git"
},
"engines": {
"vscode": "^1.30.0"
},
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"lint": "tslint src/*.ts",
"publish:vscode": "vsce package && vsce publish",
"publish:vscode:ci": "vsce package && vsce publish minor -p $VSCE_TOKEN",
"postinstall": "node ./node_modules/vscode/bin/install",
"vscode:uninstall": "node ./scripts/uninstall.js",
"test": "npm run lint && echo 'No unit tests'"
},
"devDependencies": {
"@types/fs-extra": "^8.1.0",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.5",
"@types/ws": "^7.2.3",
"tslint": "^6.1.0",
"typescript": "^3.8.3",
"vsce": "^1.74.0",
"vscode": "^1.1.36"
},
"dependencies": {
"fs-extra": "^9.0.0",
"logitech-craft-plugin": "^1.1.1",
"ws": "^7.2.5"
},
"extensionKind": [
"ui"
],
"categories": [
"Keymaps",
"Other"
],
"icon": "assets/options-icon.png",
"galleryBanner": {
"color": "#006f86",
"theme": "light"
},
"activationEvents": [
"*"
],
"contributes": {
"configuration": {
"type": "object",
"title": "Logitech Craft keyboard",
"properties": {
"logitechCraft.leftTurn": {
"type": "string",
"default": "workbench.action.previousEditor",
"description": "The VSCode command to run when the crown is turned to the left one notch."
},
"logitechCraft.rightTurn": {
"type": "string",
"default": "workbench.action.nextEditor",
"description": "The VSCode command to run when the crown is turned to the right one notch."
},
"logitechCraft.crownTouch": {
"type": "string",
"default": "",
"description": "The VSCode command to run when the crown is touched."
},
"logitechCraft.crownRelease": {
"type": "string",
"default": "",
"description": "The VSCode command to run when the crown is released."
}
}
}
}
}