-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 855 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 855 Bytes
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
{
"name": "github-action-npm-publish",
"version": "1.0.1",
"private": true,
"description": "Publish an node repository to npm.",
"main": "dist/index.cjs.js",
"engines": {
"node": ">=16.0"
},
"scripts": {
"prebuild": "node ./prebuild.mjs",
"build": "ncc build src/index.ts -m -q -o dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/springtype-org/github-action-npm-publish.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Michael Mannseicher",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@vercel/ncc": "^0.38.1",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@types/node": "^20.12.12",
"@types/semver": "^7.5.8",
"typescript": "^5.4.5"
}
}