forked from release-lab/vscode-whatchanged
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.67 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
103
104
105
{
"name": "vscode-whatchanged",
"displayName": "whatchanged",
"description": "变更日志生成器 Generate changelog for git project",
"version": "0.2.4",
"publisher": "axetroy",
"engines": {
"vscode": "^1.61.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/release-lab/vscode-whatchanged.git"
},
"license": "Anti-996",
"bugs": {
"url": "https://github.com/release-lab/vscode-whatchanged/issues"
},
"homepage": "https://github.com/release-lab/vscode-whatchanged#readme",
"keywords": [
"changelog",
"whatchanged",
"Conventional",
"commit"
],
"categories": [
"Other"
],
"icon": "resources/logo.png",
"main": "./out/index.js",
"activationEvents": [
"onCommand:whatchanged.generate",
"onCommand:whatchanged.generateAll"
],
"contributes": {
"commands": [
{
"command": "whatchanged.generate",
"title": "%cmd.generate.title%",
"category": "whatchanged"
},
{
"command": "whatchanged.generateAll",
"title": "%cmd.generateAll.title%",
"category": "whatchanged"
}
],
"menus": {
"scm/title": [
{
"command": "whatchanged.generate",
"when": "scmProvider == git"
},
{
"command": "whatchanged.generateAll",
"when": "scmProvider == git"
}
],
"commandPalette": [
{
"command": "whatchanged.generate"
},
{
"command": "whatchanged.generateAll"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run lint && tsc -p ./ && npm run compile",
"clean": "rimraf ./out",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"test": "npm run compile && node ./node_modules/vscode/bin/test",
"changelog": "whatchanged HEAD~ > CHANGELOG.md",
"publish": "npx vsce publish",
"package": "npx vsce package",
"postinstall": "node script/install-whatchanged.js"
},
"devDependencies": {
"@types/byline": "4.2.33",
"@types/fs-extra": "9.0.13",
"@types/lodash": "4.14.173",
"@types/mocha": "9.0.0",
"@types/node": "14.17.17",
"@types/vscode": "1.60.0",
"@types/which": "2.0.1",
"@typescript-eslint/eslint-plugin": "4.32.0",
"@typescript-eslint/parser": "4.32.0",
"download": "^8.0.0",
"eslint": "7.32.0",
"progress": "^2.0.3",
"rimraf": "3.0.2",
"tar": "^6.1.11",
"typescript": "4.4.3"
},
"dependencies": {
"execa": "5.1.1",
"fs-extra": "10.0.0",
"reflect-metadata": "^0.1.13",
"typedi": "^0.10.0",
"vscode-nls": "^5.0.0",
"vscode-nls-i18n": "0.2.4"
}
}