setup-pnpm/package.json

27 lines
810 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/",
"build": "pnpm run build:schemas && tsc && pnpm run build:ncc && cp src/install-pnpm/pnpm.js dist/pnpm.js",
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": {
2024-01-23 12:31:45 -08:00
"@actions/core": "^1.10.1",
"@types/expand-tilde": "^2.0.2",
"@types/fs-extra": "^11.0.4",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.11.5",
"@types/node-fetch": "^2.6.11",
"ajv": "^8.12.0",
2020-05-08 14:24:25 +07:00
"expand-tilde": "^2.0.2",
2024-01-23 12:31:45 -08:00
"fs-extra": "^11.2.0",
"js-yaml": "^4.1.0"
2020-05-08 09:58:03 +07:00
},
"devDependencies": {
2020-05-09 19:24:07 +07:00
"@ts-schema-autogen/cli": "^0.1.2",
2024-01-23 12:31:45 -08:00
"@vercel/ncc": "^0.38.1",
"typescript": "^5.3.3"
2020-05-08 09:58:03 +07:00
}
}