-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.48 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
{
"name": "vscode-whatthecommit",
"displayName": "WhatTheCommit",
"description": "Fetch your next commit message from WhatTheCommit.com",
"version": "1.0.0",
"publisher": "Gaardsholt",
"repository": {
"type": "git",
"url": "https://github.com/Gaardsholt/vscode-whatthecommit"
},
"icon": "resources/images/icon.png",
"homepage": "https://github.com/Gaardsholt/vscode-whatthecommit/blob/master/README.md",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/Gaardsholt/vscode-whatthecommit/issues"
},
"engines": {
"vscode": "^1.76.0"
},
"categories": [
"SCM Providers"
],
"activationEvents": [
"*",
"onFileSystem:git"
],
"main": "./out/extension.js",
"browser": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "wtc.getCommitMessage",
"title": "Get Commit Message",
"enablement": "wtc.enabled",
"category": "WhatTheCommit",
"icon": {
"light": "resources/icons/light/icon.svg",
"dark": "resources/icons/dark/icon.svg"
}
}
],
"menus": {
"scm/title": [
{
"command": "wtc.getCommitMessage",
"group": "navigation@9",
"when": "scmProvider == git"
}
]
},
"configuration": {
"title": "WhatTheCommit",
"properties": {
"wtc.addPermalink": {
"type": "boolean",
"default": false,
"description": "Add the permalink to the commit message."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"package": "yes | vsce package",
"deploy": "vsce publish --allow-star-activation",
"compile-web": "webpack",
"run-in-browser": "vscode-test-web --extensionId=vscode.git --browserType=chromium --extensionDevelopmentPath=. ."
},
"devDependencies": {
"@types/node": "^18.19.74",
"@types/vscode": "^1.76.0",
"@types/webpack-env": "^1.18.5",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"@vscode/test-web": "^0.0.65",
"@vscode/vsce": "^3.2.1",
"assert": "^2.1.0",
"eslint": "^9.18.0",
"mocha": "^11.1.0",
"process": "^0.11.10",
"ts-loader": "^9.5.2",
"typescript": "^5.7.3",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"https-browserify": "^1.0.0",
"stream-http": "^3.2.0",
"url": "^0.11.4"
}
}