-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.1 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
{
"name": "release-upload-action",
"version": "4.1.0",
"private": true,
"description": "Simple Github action to create a draft release with assets on tags push",
"engines": {
"node": "22.14.0"
},
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"lint": "eslint src/",
"package": "ncc build --source-map --license licenses.txt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/d1ceward/release-upload-action.git"
},
"keywords": [
"release",
"upload",
"action",
"assets",
"draft"
],
"author": "d1ceward",
"license": "MIT",
"dependencies": {
"@actions/core": "1.11.1",
"@actions/github": "6.0.0"
},
"devDependencies": {
"@eslint/js": "9.21.0",
"@types/node": "22.13.8",
"@vercel/ncc": "0.38.3",
"eslint": "9.21.0",
"globals": "16.0.0",
"js-yaml": "4.1.0",
"typescript": "5.8.2",
"typescript-eslint": "8.25.0"
},
"packageManager": "[email protected]+sha512.da9dc28cd3ff40d0592188235ab25d3202add8a207afbedc682220e4a0029ffbff4562102b9e6e46b4e3f9e8bd53e6d05de48544b0c57d4b0179e22c76d1199b"
}