-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
110 lines (110 loc) · 2.88 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
106
107
108
109
110
{
"name": "commit-tagger",
"displayName": "Commit Tagger",
"description": "Generate tag for your commit at ease.",
"version": "2.2.1",
"publisher": "Mongkii",
"icon": "images/icon.png",
"engines": {
"vscode": "^1.30.0"
},
"categories": [
"Other"
],
"keywords": [
"git",
"commit",
"tag",
"commitizen"
],
"license": "SEE LICENSE IN LICENSE.txt",
"bugs": {
"url": "https://github.com/mongkii/commit-tagger/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/mongkii/commit-tagger"
},
"homepage": "https://github.com/mongkii/commit-tagger/blob/master/README.md",
"activationEvents": [
"onCommand:extension.commitTagger",
"onCommand:extension.commitTaggerSettings"
],
"main": "./out/extension.js",
"capabilities": {
"untrustedWorkspaces": {
"supported": true
}
},
"contributes": {
"commands": [
{
"command": "extension.commitTagger",
"title": "Commit Tagger",
"icon": {
"dark": "resources/dark/tag.svg",
"light": "resources/light/tag.svg"
}
},
{
"command": "extension.commitTaggerSettings",
"title": "Commit Tagger Settings"
}
],
"menus": {
"scm/title": [
{
"when": "scmProvider == git",
"command": "extension.commitTagger",
"group": "navigation"
}
]
},
"keybindings": [
{
"command": "extension.commitTagger",
"key": "shift+alt+c",
"mac": "cmd+ctrl+c"
}
]
},
"scripts": {
"clean": "rm -rf out && rm -rf webview",
"watch:webview": "rollup -c -w",
"watch:main": "tsc -w -p ./",
"watch": "npm run clean && concurrently 'npm:watch:webview' 'npm:watch:main'",
"compile:webview": "cross-env NODE_ENV=production rollup -c",
"compile:main": "tsc -p ./",
"compile": "npm run clean && concurrently 'npm:compile:webview' 'npm:compile:main'",
"vscode:prepublish": "npm run compile",
"pack": "vsce package"
},
"devDependencies": {
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@rollup/plugin-typescript": "^8.2.0",
"@types/glob": "^7.1.1",
"@types/node": "^14.14.31",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@types/vscode": "^1.30.0",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"concurrently": "^6.0.0",
"cross-env": "^7.0.3",
"eslint": "^7.20.0",
"eslint-plugin-prettier": "^3.1.2",
"glob": "^7.1.6",
"postcss": "^8.2.6",
"postcss-url": "^10.1.1",
"preact": "^10.5.12",
"prettier": "^2.0.2",
"rollup": "^2.39.0",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.1.5",
"vsce": "^1.81.1",
"vscode-test": "^1.3.0"
}
}