tiny-sprite/package.json
Corey Johnson a83f4ece7a fix: add tsc to test script and fix type errors
- Add tsc --noEmit to test script
- Switch server to Bun's native serve format for HTMLBundle compatibility

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-06 13:20:31 -08:00

24 lines
413 B
JSON

{
"name": "tiny-sprites",
"type": "module",
"exports": {
".": "./src/sprite.tsx"
},
"bin": {
"tiny-sprites": "src/dev/server.tsx"
},
"scripts": {
"dev": "bun --hot src/dev/server.tsx",
"test": "tsc --noEmit && bun test"
},
"dependencies": {
"hono": "^4"
},
"devDependencies": {
"bun-types": "latest"
},
"prettier": {
"semi": false,
"printWidth": 100
}
}