-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.12 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
44
45
{
"name": "setup-release",
"version": "0.0.6",
"type": "module",
"private": true,
"description": "GitHub Action that downloads a release and provision for later job usage",
"main": "lib/main.js",
"scripts": {
"type-check": "tsc --noEmit",
"format": "prettier --write .",
"format-check": "prettier --check .",
"lint": "eslint .",
"build": "ncc build src/main.ts --source-map --license licenses.txt",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/odanado/setup-release.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "odanado",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"@actions/io": "^1.0.2",
"@actions/tool-cache": "^2.0.1",
"@octokit/types": "^5.5.0"
},
"devDependencies": {
"@eslint/js": "^9.4.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20.14.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"prettier": "^3.3.1",
"typescript": "^5.4.5",
"typescript-eslint": "^7.12.0",
"vitest": "^1.6.0"
}
}