patchbay/package.json

18 lines
381 B
JSON
Raw Normal View History

2026-05-12 21:06:22 +00:00
{
2026-05-12 23:18:13 +00:00
"name": "@peezy.tech/patchbay",
2026-05-12 21:06:22 +00:00
"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"
}
}