patchbay/package.json
matamune 3379abf99b
All checks were successful
check / check (push) Successful in 37s
Rename service to Patchbay
2026-05-12 23:18:13 +00:00

17 lines
381 B
JSON

{
"name": "@peezy.tech/patchbay",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "bun --watch src/server.ts",
"start": "bun src/server.ts",
"test": "bun test",
"check:types": "tsc --noEmit",
"check": "bun run check:types && bun test"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.9.3"
}
}