mirror of
https://github.com/smogon/sprites.git
synced 2026-08-18 07:16:46 -05:00
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>
15 lines
322 B
JSON
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"
|
|
}
|
|
}
|