-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
69 lines (69 loc) · 1.54 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
{
"name": "vscode-typer",
"displayName": "VSCode Typer",
"description": "Auto-magically type code",
"version": "0.1.25",
"publisher": "brettmorgan",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/domesticmouse/vscode-typer"
},
"engines": {
"vscode": "^1.95.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:domesticmouse.vscode-typer.Next",
"onCommand:domesticmouse.vscode-typer.Previous"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "domesticmouse.vscode-typer.ResetMain",
"title": "Reset",
"category": "VSCode Typer"
}
],
"keybindings": [
{
"command": "domesticmouse.vscode-typer.Next",
"key": "ctrl+right",
"mac": "cmd+right",
"when": "editorTextFocus"
},
{
"command": "domesticmouse.vscode-typer.Previous",
"key": "ctrl+left",
"mac": "cmd+left",
"when": "editorTextFocus"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"prettier": "prettier --single-quote --trailing-comma=all --arrow-parens=always --write src/*.ts",
"update": "ncu -u",
"package": "vsce package"
},
"devDependencies": {
"@types/diff": "^6.0.0",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.0",
"@types/vscode": "^1.95.0",
"@vscode/vsce": "^3.2.1",
"npm-check-updates": "^17.1.11",
"prettier": "^3.4.1",
"tslint": "^6.1.3",
"typescript": "^5.7.2"
},
"dependencies": {
"diff": "^7.0.0",
"jsonc-parser": "^3.3.1"
}
}