-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.26 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.26 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
{
"name": "commitify",
"publisher": "webyot-technologies",
"displayName": "Commitify",
"description": "Auto commit changes using Copilot every 5 minutes",
"version": "0.1.0",
"icon": "resources/logo.png",
"engines": {
"vscode": "^1.93.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished",
"workspaceContains:.git"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "commitify.start",
"title": "Start Commitify"
},
{
"command": "commitify.stop",
"title": "Stop Commitify"
}
],
"configuration": {
"title": "Commitify",
"properties": {
"commitify.interval": {
"type": "number",
"default": 5,
"description": "Interval in minutes for auto-commits"
},
"commitify.autoPush": {
"type": "boolean",
"default": false,
"description": "Automatically push changes after commit"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p .",
"watch": "tsc -watch -p ."
},
"devDependencies": {
"@types/vscode": "^1.93.0",
"@types/node": "^20.0.0",
"typescript": "^5.4.5"
}
}