-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1007 Bytes
/
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
{
"name": "zip-deploy",
"version": "1.0.0",
"description": "",
"main": "index.js",
"author": "",
"license": "ISC",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write src/",
"lint": "eslint . --report-unused-disable-directives-severity error --max-warnings 0",
"build": "rollup -c",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"axios": "^1.7.2",
"form-data": "^4.0.0"
},
"devDependencies": {
"@paratco/eslint-config": "^0.5.0",
"@paratco/prettier-config": "^0.1.1",
"@rollup/plugin-replace": "^5.0.7",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.14.10",
"eslint": "^8.57.0",
"globals": "^15.8.0",
"prettier": "^3.3.2",
"rollup": "^4.18.0",
"tslib": "^2.6.3",
"typescript": "^5.5.3",
"typescript-eslint": "^7.15.0"
}
}