forked from qwibitai/nanoclaw
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.58 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.58 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
77
78
79
80
{
"name": "nanoclaw",
"version": "1.2.57",
"description": "Personal Claude assistant. Lightweight, secure, customizable.",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc && cp src/brain/schema.sql dist/brain/schema.sql && cp src/brain/golden-set.json dist/brain/golden-set.json",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"typecheck": "tsc --noEmit",
"format": "prettier --write \"src/**/*.ts\"",
"format:fix": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"prepare": "husky",
"setup": "tsx setup/index.ts",
"auth": "tsx src/whatsapp-auth.ts",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"test": "vitest run",
"test:watch": "vitest",
"triage:bootstrap": "tsx scripts/triage-bootstrap.ts",
"qa:check": "tsx scripts/qa-check.ts",
"qa:monitor": "tsx scripts/qa-monitor.ts",
"qa:scenarios": "tsx scripts/qa-scenarios.ts",
"qa:monitor-scenarios": "tsx scripts/qa-monitor-scenarios.ts",
"qa:all": "npm run qa:check && npm run qa:scenarios",
"qa:propose-fix": "tsx scripts/qa/propose-fix.ts",
"qa:expire-proposals": "tsx scripts/qa/expire-proposals.ts"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.69",
"@ai-sdk/google": "^3.0.63",
"@ai-sdk/openai": "^3.0.53",
"@browserbasehq/stagehand": "^3.2.1",
"@huggingface/transformers": "^4.2.0",
"@onecli-sh/sdk": "^0.2.0",
"@qdrant/js-client-rest": "^1.17.0",
"@types/js-yaml": "^4.0.9",
"@types/uuid": "^10.0.0",
"@whiskeysockets/baileys": "^7.0.0-rc.9",
"ai": "^6.0.161",
"better-sqlite3": "11.10.0",
"cron-parser": "5.5.0",
"discord.js": "^14.26.2",
"express": "^5.2.1",
"generic-pool": "^3.9.0",
"google-auth-library": "^9.15.1",
"googleapis": "^146.0.0",
"grammy": "^1.42.0",
"js-yaml": "^4.1.1",
"pino": "^10.3.1",
"playwright-core": "^1.59.1",
"ulid": "^3.0.2",
"uuid": "^14.0.0"
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"@types/better-sqlite3": "^7.6.12",
"@types/express": "^5.0.6",
"@types/generic-pool": "^3.1.11",
"@types/node": "^22.10.0",
"@types/supertest": "^7.2.0",
"eslint": "^9.35.0",
"eslint-plugin-no-catch-all": "^1.1.0",
"globals": "^15.12.0",
"husky": "^9.1.7",
"pixelmatch": "^7.1.0",
"prettier": "^3.8.1",
"qrcode-terminal": "^0.12.0",
"supertest": "^7.2.2",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.35.0",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=20"
}
}