quoroom 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,63 @@
1
+ {
2
+ "name": "quoroom",
3
+ "version": "0.1.0",
4
+ "description": "Autonomous AI agent collective engine — Queen, Workers, Quorum",
5
+ "main": "./out/mcp/server.js",
6
+ "bin": {
7
+ "quoroom": "./out/mcp/cli.js"
8
+ },
9
+ "author": "Quoroom <hello@quoroom.ai>",
10
+ "homepage": "https://quoroom.ai",
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "https://github.com/quoroom-ai/room.git"
14
+ },
15
+ "license": "MIT",
16
+ "files": [
17
+ "out/mcp/cli.js",
18
+ "out/mcp/server.js",
19
+ "out/mcp/api-server.js"
20
+ ],
21
+ "scripts": {
22
+ "build": "npm run typecheck && npm run build:mcp && npm run build:ui",
23
+ "build:mcp": "node scripts/build-mcp.js",
24
+ "build:ui": "vite build --config src/ui/vite.config.ts",
25
+ "dev:ui": "vite --config src/ui/vite.config.ts",
26
+ "typecheck": "tsc --noEmit",
27
+ "test": "npm run rebuild:native:node && vitest run --pool=forks",
28
+ "test:watch": "npm run rebuild:native:node && vitest --pool=forks",
29
+ "test:e2e": "npm run build && npx playwright test",
30
+ "test:e2e:ui": "npm run build && npx playwright test e2e/ui.test.ts",
31
+ "rebuild:native:node": "node -e \"try{require('better-sqlite3')(':memory:').close()}catch{process.exit(1)}\" || npx --yes node-gyp rebuild --directory=node_modules/better-sqlite3",
32
+ "prepublishOnly": "npm run build:mcp"
33
+ },
34
+ "dependencies": {
35
+ "@huggingface/transformers": "^3.4.1",
36
+ "@modelcontextprotocol/sdk": "^1.12.0",
37
+ "better-sqlite3": "^11.10.0",
38
+ "node-cron": "^3.0.3",
39
+ "sqlite-vec": "^0.1.7-alpha.2",
40
+ "viem": "^2.46.2",
41
+ "ws": "^8.16.0",
42
+ "zod": "^3.24.0"
43
+ },
44
+ "devDependencies": {
45
+ "@electron-toolkit/tsconfig": "^2.0.0",
46
+ "@playwright/test": "^1.58.2",
47
+ "@tailwindcss/vite": "^4.2.0",
48
+ "@types/better-sqlite3": "^7.6.13",
49
+ "@types/node": "^20.11.0",
50
+ "@types/node-cron": "^3.0.11",
51
+ "@types/react": "^19.2.14",
52
+ "@types/react-dom": "^19.2.3",
53
+ "@types/ws": "^8.5.10",
54
+ "@vitejs/plugin-react": "^5.1.4",
55
+ "esbuild": "^0.24.0",
56
+ "react": "^19.2.4",
57
+ "react-dom": "^19.2.4",
58
+ "tailwindcss": "^4.2.0",
59
+ "typescript": "^5.9.3",
60
+ "vite": "^7.3.1",
61
+ "vitest": "^1.6.1"
62
+ }
63
+ }