v1.3.0: COMPLETE - Full Rig Integration with Production Setup

This commit is contained in:
admin
2026-02-26 12:04:51 +04:00
Unverified
parent 5455eaa125
commit f15ff46120
11 changed files with 544 additions and 27 deletions

View File

@@ -1,12 +1,18 @@
{
"name": "qwenclaw",
"version": "1.0.0",
"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"
"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"