-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
62 lines (62 loc) · 1.34 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
{
"name": "change-case",
"displayName": "Change Case",
"description": "Quickly change the case with one keybinding",
"version": "0.0.7",
"engines": {
"vscode": "^1.82.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:change-case.setKeyCode",
"onCommand:change-case.changeCase"
],
"publisher": "FinnTenzor",
"repository": {
"type": "git",
"url": "https://github.com/finntenzor/change-case"
},
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "change-case.changeCase",
"title": "Change Word Case"
},
{
"command": "change-case.setKeyCode",
"title": "Set Key Code"
}
],
"keybindings": [
{
"command": "change-case.changeCase",
"key": "alt+q",
"mac": "ctrl+cmd+c"
}
]
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile && yarn run lint",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "^20.6.1",
"@types/vscode": "^1.82.0",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.49.0",
"glob": "^10.3.4",
"mocha": "10.2.0",
"typescript": "^5.2.2",
"vscode-test": "^1.3.0"
}
}