24 lines
712 B
JSON
24 lines
712 B
JSON
{
|
|
"name": "qwenclaw",
|
|
"version": "1.3.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"start": "bun run src/index.ts",
|
|
"dev:web": "bun --watch src/index.ts start --web --replace-existing",
|
|
"telegram": "bun run src/index.ts telegram",
|
|
"status": "bun run src/index.ts status",
|
|
"rig:start": "bun run rig-service/src/main.ts",
|
|
"rig:build": "cd rig-service && cargo build --release",
|
|
"rig:check": "cd rig-service && cargo check",
|
|
"start:all": "bun run src/index.ts start --web --with-rig",
|
|
"test": "bun test",
|
|
"test:rig": "bun test tests/rig-integration.test.ts"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "^1.3.9"
|
|
},
|
|
"dependencies": {
|
|
"ogg-opus-decoder": "^1.7.3"
|
|
}
|
|
}
|