workshop/package.json
2025-07-22 16:24:17 -07:00

22 lines
416 B
JSON

{
"name": "workshop",
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"catalog": {
"hono": "^4.8.0",
"zod": "3.25.67"
}
},
"prettier": {
"printWidth": 110,
"semi": false
},
"scripts": {
"start": "bun run main.ts",
"super-clean": "rm -rf **/node_modules && rm -rf **/bun.lockb && rm -rf **/.nano-remix",
"ci": "bun test ./ci.ts"
}
}