mirror of
https://github.com/pnpm/action-setup.git
synced 2024-11-10 09:39:11 +08:00
28 lines
791 B
JSON
28 lines
791 B
JSON
{
|
|
"private": true,
|
|
"scripts": {
|
|
"build:schemas": "ts-schema-autogen generate",
|
|
"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",
|
|
"start": "pnpm run build && sh ./run.sh"
|
|
},
|
|
"dependencies": {
|
|
"node-fetch": "^2.6.1",
|
|
"expand-tilde": "^2.0.2",
|
|
"js-yaml": "^4.0.0",
|
|
"ajv": "^6.12.5",
|
|
"fs-extra": "^9.1.0",
|
|
"@actions/core": "^1.2.6",
|
|
"@types/expand-tilde": "^2.0.0",
|
|
"@types/node-fetch": "^2.5.8",
|
|
"@types/js-yaml": "^4.0.0",
|
|
"@types/fs-extra": "^9.0.8",
|
|
"@types/node": "^14.14.35"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^4.2.3",
|
|
"@ts-schema-autogen/cli": "^0.1.2",
|
|
"@vercel/ncc": "^0.27.0"
|
|
}
|
|
}
|