setup-pnpm/package.json
2024-01-23 13:10:31 -08:00

26 lines
767 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 && cp src/install-pnpm/pnpm.js dist/pnpm.js",
"start": "pnpm run build && sh ./run.sh"
},
"dependencies": {
"@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",
"expand-tilde": "^2.0.2",
"fs-extra": "^11.2.0",
"yaml": "^2.3.4"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"typescript": "^5.3.3"
}
}