-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.39 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.39 KB
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
98
99
100
{
"name": "hunkwise",
"publisher": "molon",
"displayName": "hunkwise",
"description": "Per-hunk Accept/Discard for any file change",
"version": "0.0.29",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/molon/hunkwise"
},
"engines": {
"vscode": "^1.90.0"
},
"enabledApiProposals": [
"editorInsets"
],
"icon": "media/icon.png",
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "hunkwise.enable",
"title": "hunkwise: Enable"
},
{
"command": "hunkwise.disable",
"title": "hunkwise: Disable"
},
{
"command": "hunkwise.openSettings",
"title": "hunkwise: Settings",
"icon": "$(settings-gear)"
},
{
"command": "hunkwise.refresh",
"title": "hunkwise: Refresh State",
"icon": "$(refresh)"
}
],
"menus": {
"view/title": [
{
"command": "hunkwise.refresh",
"when": "view == hunkwiseToolbar",
"group": "navigation"
},
{
"command": "hunkwise.openSettings",
"when": "view == hunkwiseToolbar",
"group": "navigation"
}
]
},
"viewsContainers": {
"panel": [
{
"id": "hunkwisePanel",
"title": "hunkwise",
"icon": "media/icon.svg"
}
]
},
"views": {
"hunkwisePanel": [
{
"id": "hunkwiseToolbar",
"name": "hunkwise",
"type": "webview"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "rm -rf out-test && tsc -p ./tsconfig.test.json && mkdir -p out-test/node_modules/vscode && cp out-test/test/__mocks__/vscode.js out-test/node_modules/vscode/index.js && node --test out-test/test/*.test.js",
"test:integration": "npm run compile && tsc -p ./tsconfig.integration.json && vscode-test"
},
"devDependencies": {
"@types/diff": "^5.x",
"@types/mocha": "^10.0.10",
"@types/node": "^20.19.37",
"@types/vscode": "^1.90.0",
"@vscode/test-cli": "^0.0.12",
"@vscode/test-electron": "^2.5.2",
"typescript": "^5.x"
},
"dependencies": {
"diff": "^5.2.0",
"ignore": "^7.0.5"
}
}