-
-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 734 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 734 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
{
"scripts": {
"build": "tsc",
"format": "eslint . --fix && prettier --write .",
"lint": "eslint . && prettier --check .",
"prepare": "npm run lint && ncc build src/index.ts --minify --source-map"
},
"dependencies": {
"@actions/artifact": "^2.0.0",
"@actions/core": "^1.6.0",
"@actions/exec": "^1.1.0",
"semver": "^7.7.1"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.5",
"@types/node": "^20.12.8",
"@types/semver": "^7.7.0",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.9.0",
"eslint-config-prettier": "^10.1.1",
"prettier": "^2.8.6",
"typescript": "^5.0.2"
}
}