-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.95 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 1.95 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
{
"name": "semantic-release-vsce",
"version": "0.0.0-development",
"description": "semantic-release plugin to package and publish VS Code extensions",
"license": "MIT",
"type": "module",
"engines": {
"node": "^20.8.1 || >=22.0.0"
},
"repository": "https://github.com/felipecrs/semantic-release-vsce.git",
"bugs": "https://github.com/felipecrs/semantic-release-vsce/issues",
"homepage": "https://github.com/felipecrs/semantic-release-vsce#readme",
"author": "Morten Henriksen <mh@gi2.dk>",
"contributors": [
"Felipe Santos <felipecassiors@gmail.com>"
],
"keywords": [
"semantic-release",
"semantic-release-plugin",
"vscode",
"vsce"
],
"exports": "./index.js",
"files": [
"index.js",
"lib/**/*.js"
],
"scripts": {
"lint": "prettier --check . && eslint . && installed-check --ignore-dev --ignore semantic-release",
"test": "c8 ava",
"posttest": "npm run lint",
"prepare": "husky"
},
"ava": {
"files": [
"test/**/*.test.js"
]
},
"nyc": {
"all": true,
"exclude": [
"lib/die.js"
],
"include": [
"index.js",
"lib/**/*.js"
]
},
"volta": {
"node": "24.15.0",
"npm": "11.13.0"
},
"dependencies": {
"@semantic-release/error": "^4.0.0",
"@vscode/vsce": "^3.0.0",
"fs-extra": "^11.1.0",
"glob": "^13.0.0",
"ovsx": "^0.10.0"
},
"peerDependencies": {
"semantic-release": ">=20"
},
"devDependencies": {
"ava": "^7.0.0",
"c8": "^11.0.0",
"conventional-changelog-conventionalcommits": "^9.0.0",
"eslint": "^9.12.0",
"eslint-plugin-unicorn": "^64.0.0",
"esmock": "^2.6.9",
"husky": "^9.0.11",
"installed-check": "^10.0.0",
"lint-staged": "^16.0.0",
"neostandard": "^0.13.0",
"prettier": "^3.2.5",
"semantic-release": "^25.0.3",
"sinon": "^21.0.0"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"publishConfig": {
"provenance": true
}
}