forge/package.json
2025-12-27 21:14:58 -08:00

20 lines
415 B
JSON

{
"name": "forge",
"module": "src/index.ts",
"type": "module",
"scripts": {
"dev": "bun build:spa && bun run --hot server.tsx",
"test": "bun test",
"build:spa": "bun build examples/spa/index.tsx --outfile dist/spa.js --target browser"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"hono": "^4.11.3"
}
}