-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 2.97 KB
/
Copy pathpackage.json
File metadata and controls
113 lines (113 loc) · 2.97 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
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "q-commit",
"displayName": "Q Commit",
"description": "Generate commit messages using Kiro CLI",
"version": "0.0.3",
"publisher": "codeatlasdev",
"license": "MIT",
"icon": "icon.png",
"repository": {
"type": "git",
"url": "https://github.com/codeatlasdev/q-commit"
},
"bugs": {
"url": "https://github.com/codeatlasdev/q-commit/issues"
},
"keywords": [
"git",
"commit",
"amazon-q",
"ai",
"code-generation",
"scm"
],
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"SCM Providers"
],
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "q-commit.generate",
"title": "Generate Commit Message with Q",
"icon": "$(sparkle)"
}
],
"keybindings": [
{
"command": "q-commit.generate",
"key": "ctrl+shift+g",
"mac": "cmd+shift+g",
"when": "scmProvider == git"
}
],
"menus": {
"scm/title": [
{
"command": "q-commit.generate",
"group": "navigation",
"when": "scmProvider == git"
}
]
},
"configuration": {
"title": "Q Commit",
"properties": {
"q-commit.model": {
"type": "string",
"default": "claude-haiku-4.5",
"enum": ["claude-haiku-4.5", "claude-sonnet-4", "claude-sonnet-4.5"],
"description": "Model to use for generating commit messages"
},
"q-commit.showOutput": {
"type": "boolean",
"default": false,
"description": "Show output panel when generating commit messages"
},
"q-commit.prompt": {
"type": "string",
"default": "Run git diff --cached and reply with ONLY a conventional commit message wrapped in <commit></commit> tags. Example: <commit>feat: add login</commit>",
"description": "Custom prompt for generating commit messages"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"build": "node esbuild.js --production",
"package": "npm run check-types && npm run build",
"compile": "npm run check-types && node esbuild.js",
"check-types": "tsc --noEmit",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"dev": "npm run watch",
"lint": "eslint src --ext ts",
"format": "prettier --write \"src/**/*.ts\"",
"clean": "rm -rf dist",
"prepare": "husky"
},
"devDependencies": {
"@types/node": "^20.x",
"@types/vscode": "^1.80.0",
"@typescript-eslint/eslint-plugin": "^6.x",
"@typescript-eslint/parser": "^6.x",
"esbuild": "^0.19.x",
"eslint": "^8.x",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"npm-run-all": "^4.1.5",
"prettier": "^3.6.2",
"typescript": "^5.x"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
}
}