-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.81 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.81 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
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
{
"name": "version-bump",
"displayName": "Version Bump",
"description": "Bump npm version and push tags from the sidebar",
"version": "1.0.10",
"publisher": "Craig37",
"icon": "images/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/cg37/version-bump"
},
"galleryBanner": {
"color": "#1e1e1e",
"theme": "dark"
},
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "npm run compile:ext && npm run compile:webview",
"compile:ext": "tsc -p ./",
"compile:webview": "vite build",
"watch": "npm run watch:ext & npm run watch:webview",
"watch:ext": "tsc -watch -p ./",
"watch:webview": "vite build --watch",
"package": "vsce package --no-dependencies",
"publish": "vsce publish --no-dependencies",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky"
},
"keywords": [
"npm",
"version",
"git",
"push",
"release"
],
"author": "",
"license": "MIT",
"engines": {
"vscode": "^1.120.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"contributes": {
"commands": [
{
"command": "version-bump.bumpAndPush",
"title": "Version Bump: Bump & Push"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "version-bump",
"title": "Version Bump",
"icon": "images/activity-icon.svg"
}
]
},
"views": {
"version-bump": [
{
"type": "webview",
"id": "versionBumpView",
"name": "Bump & Push"
}
]
}
},
"devDependencies": {
"@commitlint/cli": "^21.0.2",
"@craig37/lint-config": "^1.0.22",
"@eslint/js": "^10.0.1",
"@types/node": "^25.9.3",
"@types/vscode": "^1.120.0",
"@vitejs/plugin-vue": "^5.2.4",
"@vscode/vsce": "^2.15.0",
"@vue/tsconfig": "^0.9.1",
"eslint": "^10.5.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-vue": "^10.9.2",
"globals": "^17.6.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.7",
"prettier": "^3.8.4",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.0",
"vite": "^6.4.3",
"vue": "^3.5.38",
"vue-eslint-parser": "^10.4.1"
},
"prettier": "@craig37/lint-config/prettier"
}