action-setup/package.json

27 lines
810 B
JSON
Raw Normal View History

2020-05-08 02:58:03 +00:00
{
"private": true,
2020-05-08 03:22:09 +00:00
"scripts": {
2020-05-09 12:24:07 +00:00
"build:schemas": "ts-schema-autogen generate",
2020-05-08 06:36:16 +00:00
"build:ncc": "ncc build --minify --no-source-map-register --no-cache dist/tsc/index.js --out dist/",
"build": "pnpm run build:schemas && tsc && pnpm run build:ncc && cp src/install-pnpm/pnpm.js dist/pnpm.js",
2020-05-08 05:52:52 +00:00
"start": "pnpm run build && sh ./run.sh"
2020-05-08 03:22:09 +00:00
},
2020-05-08 02:58:03 +00:00
"dependencies": {
"@actions/core": "^1.10.0",
"@types/expand-tilde": "^2.0.0",
"@types/fs-extra": "^9.0.13",
"@types/js-yaml": "^4.0.5",
"@types/node": "^14.18.54",
"@types/node-fetch": "^2.6.4",
"ajv": "^6.12.6",
2020-05-08 07:24:25 +00:00
"expand-tilde": "^2.0.2",
2022-10-15 18:12:13 +00:00
"fs-extra": "^10.1.0",
"js-yaml": "^4.1.0"
2020-05-08 02:58:03 +00:00
},
"devDependencies": {
2020-05-09 12:24:07 +00:00
"@ts-schema-autogen/cli": "^0.1.2",
2022-10-15 18:12:13 +00:00
"@vercel/ncc": "^0.33.4",
"typescript": "^4.9.5"
2020-05-08 02:58:03 +00:00
}
}