-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
102 lines (102 loc) · 2.75 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
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
{
"name": "auto-commit-msg",
"type": "commonjs",
"version": "0.27.2",
"scripts": {
"fmt:check": "prettier -c src",
"fmt:fix": "prettier -w src",
"lint:check": "eslint . --ext .ts --max-warnings 10",
"lint:fix": "eslint . --ext .ts --fix",
"clean": "rm -rf out",
"watch": "tsc -watch -p .",
"compile": "npm run clean && tsc -p .",
"pretest": "npm run compile",
"test:unit": "cd out && mocha --recursive",
"test": "npm run test:unit",
"cover": "nyc npm test",
"cover:report": "nyc report --reporter=lcov",
"cover:check": "nyc check-coverage --lines 95",
"checks": "npm run fmt:check && npm run lint:check && npm test",
"vscode:prepublish": "npm run compile",
"build": "mkdir -p build && vsce package --out build/",
"ext": "npm run build && code --install-extension $(ls -t build/* | head -n1) --force",
"preversion": "npm run checks",
"version": "npm run build",
"postversion": "git push --follow-tags",
"sb": "bin/reset_sandbox.sh"
},
"engines": {
"node": ">=22",
"npm": ">=10",
"vscode": "^1.92.0"
},
"devDependencies": {
"@types/mocha": "^10.0.3",
"@types/node": "^22.4.1",
"@types/vscode": "^1.92.0",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"@vscode/vsce": "^3.0.0",
"eslint": "^8.57.1",
"mocha": "^10.0.0",
"nyc": "^17.1.0",
"prettier": "^3.0.3",
"source-map-support": "^0.5.20",
"typescript": "^5.6.3",
"vscode-test": "^1.6.1"
},
"displayName": "Auto Commit Message",
"description": "A VS Code extension to generate a smart commit message based on file changes",
"publisher": "MichaelCurrin",
"author": {
"name": "MichaelCurrin"
},
"license": "MIT",
"homepage": "https://github.com/MichaelCurrin/auto-commit-msg#readme",
"bugs": "https://github.com/MichaelCurrin/auto-commit-msg/issues",
"repository": {
"type": "git",
"url": "https://github.com/MichaelCurrin/auto-commit-msg"
},
"keywords": [
"git",
"auto",
"generate",
"commit",
"message",
"conventional-commit",
"vs-code",
"vscode",
"productivity"
],
"main": "out/extension.js",
"categories": [
"SCM Providers"
],
"icon": "images/icon.png",
"galleryBanner": {
"color": "#f0efe7",
"theme": "light"
},
"contributes": {
"commands": [
{
"command": "commitMsg.autofill",
"title": "Auto Commit Message",
"icon": {
"dark": "images/message.svg",
"light": "images/message-light.svg"
}
}
],
"menus": {
"scm/title": [
{
"command": "commitMsg.autofill",
"when": "scmProvider == git",
"group": "navigation"
}
]
}
}
}