Files
sprites/package.json
Christopher Monsanto c6c336dc2d Fix ps sheet data imports broken by dist-main removal
The .sheet.mjs files imported bare @smogon/sprite-data / @smogon/sprite-root,
which stopped resolving from the repo root after the TS7/Node 24 migration
dropped dist mains. Use explicit index.ts imports and add the workspace deps
to the root package.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-15 22:04:43 -04:00

15 lines
322 B
JSON

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