generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 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
44
{
"name": "setup-ghjk",
"description": "Installs ghjk and syncs ports",
"version": "0.1.1",
"private": true,
"keywords": [
"actions",
"node",
"setup"
],
"exports": {
".": "./index.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"lint": "npx eslint . -c ./.github/linters/.eslintrc.yml",
"format:write": "prettier --write *",
"format:check": "prettier --check *",
"build": "ncc build index.ts -o .",
"build:watch": "ncc build index.ts -w -o ."
},
"dependencies": {
"@actions/cache": "^3.2.2",
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/tool-cache": "^2.0.1",
"node-fetch": "^2.7.0"
},
"devDependencies": {
"@types/node": "^20.11.20",
"@types/node-fetch": "^2.6.9",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.21.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"eslint-plugin-github": "^4.10.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jsonc": "^2.13.0",
"eslint-plugin-prettier": "^5.1.3",
"typescript": "^5.3.3"
}
}