-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.54 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": "edgeserver-action",
"version": "0.2.1-4",
"description": "",
"main": "lib/run/index.js",
"scripts": {
"test": "set -a && source ./.env && set +a && pnpm build && pnpm node ./lib/index.js",
"build": "pnpm build-run && pnpm build-pre && pnpm build-post && rm ./src/*.js && rm ./src/**/*.js",
"build-run": "tsc && ncc build src/index.js -o lib/run",
"build-pre": "tsc && ncc build src/pre.js -o lib/pre",
"build-post": "tsc && ncc build src/post.js -o lib/post",
"install-precommit": "cp ./pre-commit.sh ./.git/hooks/pre-commit",
"lint": "eslint -c .eslintrc.json --ext .ts ./src"
},
"keywords": [],
"author": "v3xlabs",
"license": "GPL-3.0",
"devDependencies": {
"@types/archiver": "^5.3.1",
"@types/cli-progress": "^3.11.0",
"@types/node": "^18.0.0",
"@typescript-eslint/parser": "^5.30.4",
"eslint": "^8.19.0",
"eslint-plugin-lvksh": "^1.4.1",
"pre-commit": "^1.2.2",
"typescript": "^4.7.4"
},
"dependencies": {
"@actions/core": "^1.9.0",
"@actions/github": "^5.0.3",
"@lvksh/logger": "^1.6.3",
"@vercel/ncc": "^0.34.0",
"archiver": "^5.3.1",
"chalk": "4.0.0",
"cli-progress": "^3.11.2",
"cli-spinners": "^2.6.1",
"form-data": "^4.0.0",
"formdata-node": "^4.3.3",
"node-fetch": "^3.2.6",
"ora": "^6.1.2",
"pretty-bytes": "^6.0.0",
"yup": "^0.32.11",
"zip-a-folder": "^1.1.5"
}
}