-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.79 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "talon",
"version": "0.4.0",
"description": "Personal AI assistant — local-first, multi-channel, with agent loop and memory compression",
"type": "module",
"main": "dist/gateway/index.js",
"bin": {
"talon": "./dist/cli/index.js"
},
"scripts": {
"dev": "tsx watch src/gateway/index.ts",
"build": "tsc && chmod +x dist/cli/index.js && cp src/storage/schema.sql dist/storage/",
"build:web": "cd web && npm run build",
"build:all": "npm run build && npm run build:web",
"prestart": "npm run build",
"start": "NODE_ENV=production node dist/cli/index.js start",
"gateway": "NODE_ENV=production node dist/cli/index.js gateway",
"setup": "tsx src/cli/index.ts setup",
"setup:secure": "node scripts/setup-secure.js",
"health": "tsx src/cli/index.ts health",
"ws": "node scripts/ws-client.js",
"web:dev": "cd web && npm run dev",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:memory": "node scripts/test-memory-hallucination.js",
"test:integration": "node scripts/test-hallucination-integration.js",
"test:vector": "node scripts/test-vector-memory.js",
"test:gateway": "node scripts/test-gateway-e2e.js",
"test:all": "npm run build && npm run test:memory && npm run test:integration && npm run test:gateway",
"install:vector": "bash scripts/install-vector-deps.sh",
"ws:setup": "node dist/cli/whatsapp-setup.js"
},
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"@fastify/cors": "^11.0.0",
"@fastify/static": "^9.0.0",
"@fastify/websocket": "^11.0.1",
"@inquirer/prompts": "^8.2.1",
"@types/chokidar": "^1.7.5",
"@types/puppeteer": "^5.4.7",
"better-sqlite3": "^11.10.0",
"chalk": "^5.6.2",
"chokidar": "^5.0.0",
"cli-highlight": "^2.1.11",
"dotenv": "^16.4.7",
"fastify": "^5.2.1",
"fuse.js": "^7.1.0",
"inquirer": "^9.3.8",
"jsdom": "^26.0.0",
"marked": "^12.0.2",
"nanoid": "^5.0.9",
"openai": "^6.22.0",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"puppeteer": "^24.37.5",
"qrcode-terminal": "^0.12.0",
"whatsapp-web.js": "^1.34.6",
"ws": "^8.18.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/inquirer": "^9.0.9",
"@types/jsdom": "^27.0.0",
"@types/node": "^22.10.5",
"@types/qrcode-terminal": "^0.12.2",
"@types/ws": "^8.5.13",
"@vitest/coverage-v8": "^3.2.4",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^3.0.4"
}
}