- 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>
24 lines
413 B
JSON
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
|
|
}
|
|
} |