-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.37 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.37 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
{
"name": "git-fixup",
"displayName": "Git Fixup",
"version": "1.0.0",
"publisher": "gebhard",
"description": "Manage git fix-up commits easily",
"categories": [
"Other"
],
"icon": "images/logo.png",
"galleryBanner": {
"color": "#2EB957",
"theme": "dark"
},
"pricing": "Free",
"activationEvents": [],
"engines": {
"vscode": "^1.96.0"
},
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "git-fixup.amendStagedChanges",
"title": "Git Fixup: Amend Staged Changes"
}
],
"keybindings": [
{
"command": "git-fixup.amendStagedChanges",
"key": "ctrl+alt+shift+f",
"mac": "cmd+alt+shift+f",
"when": "editorTextFocus"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "jest test/*.test.ts",
"lint": "eslint src test"
},
"dependencies": {
"@types/jest": "^29.5.14",
"simple-git": "^3.27.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/node": "20.x",
"@types/vscode": "^1.96.0",
"eslint": "^9.17.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0"
},
"repository": {
"type": "git",
"url": "https://github.com/teogeb/git-fixup.git"
}
}