Files
sprites/package.json
Christopher Monsanto dd2396719d Add pnpm deploy: pipe the assets tar to DEPLOY_COMMAND from .env
The deploy tool grows a deploy subcommand that runs the build, packs the
tar, and streams it to the command .env names. Packing now finalizes the
archive; without the end-of-archive marker, strict stream readers
(Python tarfile, hence smogonctl) die on truncation.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-21 01:13:11 -04:00

17 lines
440 B
JSON

{
"type": "module",
"scripts": {
"build": "node tools/build/index.ts",
"deploy": "node tools/deploy/index.ts deploy assets.deploy.js",
"check": "tsc --build tsconfig-workspace.json"
},
"dependencies": {
"@smogon/sprite-data": "workspace:*",
"@smogon/sprite-root": "workspace:*"
},
"devDependencies": {
"@types/node": "^24.10.7",
"typescript": "~7.0.2"
}
}