-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.12 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.12 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
{
"name": "vscode-commit-pro",
"version": "0.1.3",
"private": true,
"description": "Write your Commit Message like a pro - like you write your Code",
"keywords": [
"vscode",
"conventional-commits",
"conventional",
"semantic",
"commit",
"git"
],
"author": {
"name": "Thomas Wirth",
"email": "thomas@wtho.de"
},
"publisher": "wtho",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/wtho/vscode-commit-pro.git"
},
"bugs": {
"url": "https://github.com/wtho/vscode-commit-pro/issues"
},
"workspaces": [
"git-commit-parser",
"extension",
"extension-client",
"extension-server"
],
"scripts": {
"ts-projects:precompile": "cd git-commit-parser && tsc -b",
"ts-projects:compile": "npm run ts-projects:precompile && tsc -b",
"ts-projects:watch": "npm run ts-projects:precompile && tsc -b -w",
"test": "vitest",
"test-run": "vitest --run"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"vitest": "^0.13.0",
"vsce": "./avoiding-hoisting"
}
}