action-setup/package.json

28 lines
791 B
JSON
Raw Normal View History

2020-05-08 09:58:03 +07:00
{
"private": true,
2020-05-08 10:22:09 +07:00
"scripts": {
2020-05-09 19:24:07 +07:00
"build:schemas": "ts-schema-autogen generate",
2020-05-08 13:36:16 +07:00
"build:ncc": "ncc build --minify --no-source-map-register --no-cache dist/tsc/index.js --out dist/",
2020-05-09 19:24:07 +07:00
"build": "pnpm run build:schemas && tsc && pnpm run build:ncc",
2020-05-08 12:52:52 +07:00
"start": "pnpm run build && sh ./run.sh"
2020-05-08 10:22:09 +07:00
},
2020-05-08 09:58:03 +07:00
"dependencies": {
2020-10-05 21:44:44 +07:00
"node-fetch": "^2.6.1",
2020-05-08 14:24:25 +07:00
"expand-tilde": "^2.0.2",
2021-03-23 11:43:36 +07:00
"js-yaml": "^4.0.0",
2020-10-05 21:44:44 +07:00
"ajv": "^6.12.5",
2021-03-23 12:42:43 +07:00
"fs-extra": "^9.1.0",
2020-10-05 21:44:44 +07:00
"@actions/core": "^1.2.6",
2020-05-08 14:24:25 +07:00
"@types/expand-tilde": "^2.0.0",
2021-03-23 11:43:36 +07:00
"@types/node-fetch": "^2.5.8",
"@types/js-yaml": "^4.0.0",
2021-03-23 12:42:43 +07:00
"@types/fs-extra": "^9.0.8",
2021-03-23 11:43:36 +07:00
"@types/node": "^14.14.35"
2020-05-08 09:58:03 +07:00
},
"devDependencies": {
2021-03-23 11:43:36 +07:00
"typescript": "^4.2.3",
2020-05-09 19:24:07 +07:00
"@ts-schema-autogen/cli": "^0.1.2",
2021-03-23 11:43:36 +07:00
"@vercel/ncc": "^0.27.0"
2020-05-08 09:58:03 +07:00
}
}