setup-pnpm/package.json

26 lines
731 B
JSON
Raw Normal View History

2020-05-08 10:58:03 +08:00
{
"private": true,
2020-05-08 11:22:09 +08:00
"scripts": {
2020-05-09 20:24:07 +08:00
"build:schemas": "ts-schema-autogen generate",
2020-05-08 14:36:16 +08:00
"build:ncc": "ncc build --minify --no-source-map-register --no-cache dist/tsc/index.js --out dist/",
2020-05-09 20:24:07 +08:00
"build": "pnpm run build:schemas && tsc && pnpm run build:ncc",
2020-05-08 13:52:52 +08:00
"start": "pnpm run build && sh ./run.sh"
2020-05-08 11:22:09 +08:00
},
2020-05-08 10:58:03 +08:00
"dependencies": {
2020-05-08 22:34:25 +08:00
"node-fetch": "^2.6.0",
2020-05-08 15:24:25 +08:00
"expand-tilde": "^2.0.2",
2020-05-09 20:13:46 +08:00
"js-yaml": "^3.13.1",
2020-05-09 20:45:31 +08:00
"ajv": "^6.12.0",
2020-05-08 10:58:03 +08:00
"@actions/core": "^1.2.4",
2020-05-08 15:24:25 +08:00
"@types/expand-tilde": "^2.0.0",
2020-05-08 22:34:25 +08:00
"@types/node-fetch": "^2.5.7",
2020-05-09 20:13:46 +08:00
"@types/js-yaml": "^3.12.3",
2020-05-08 10:58:03 +08:00
"@types/node": "^13.13.5"
},
"devDependencies": {
2020-05-08 11:19:47 +08:00
"typescript": "^3.8.3",
2020-05-09 20:24:07 +08:00
"@ts-schema-autogen/cli": "^0.1.2",
2020-05-08 10:58:03 +08:00
"@zeit/ncc": "^0.22.1"
}
}