generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 996 Bytes
/
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
{
"name": "release-npm-action",
"description": "GitHub action to version and document a plugin release to npm.",
"repository": "github:tobua/release-npm-action",
"homepage": "https://github.com/marketplace/actions/release-npm-action",
"license": "MIT",
"author": "Matthias Giger",
"scripts": {
"build": "esbuild index.js --bundle --platform=node --format=esm --target=esnext --outfile=dist/index.js --sourcemap --external:semantic-release --external:@actions/core && npm install --no-package-lock --prefix dist",
"test": "vitest run"
},
"dependencies": {
"@actions/core": "^1.11.1",
"semantic-release": "^24.1.2"
},
"type": "module",
"keywords": [
"github",
"action",
"javascript",
"npm",
"plugin",
"semver"
],
"devDependencies": {
"esbuild": "^0.24.0",
"prettier": "^3.3.3",
"typescript": "^5.6.2",
"vitest": "^2.1.2"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true
}
}