-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.48 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.48 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
81
82
83
84
85
86
87
88
89
90
{
"name": "openwhale",
"version": "0.1.0",
"description": "Next-gen AI assistant with enterprise security and multi-model support",
"type": "module",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/viralcode/openwhale.git"
},
"bin": {
"openwhale": "./openwhale.mjs"
},
"scripts": {
"dev": "tsx watch src/index.ts",
"cli": "tsx src/cli.ts",
"chat": "tsx src/cli.ts chat",
"build": "tsc && node scripts/copy-dashboard.mjs",
"start": "node dist/index.js",
"test": "vitest",
"test:run": "vitest run",
"test:cli": "tsx src/cli.ts test",
"lint": "eslint src --ext .ts",
"typecheck": "tsc --noEmit",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio",
"docker:build": "docker build -t openwhale .",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"setup": "tsx src/cli.ts browser install",
"postinstall": "echo '\n🐋 OpenWhale installed!\n\n Optional: Run npm run setup to install BrowserOS\n Start server: npm run dev\n CLI commands: npm run cli <command>\n'"
},
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.32.0",
"@hono/node-server": "^1.13.0",
"@types/qrcode": "^1.5.6",
"@types/ssh2": "^1.15.5",
"@whiskeysockets/baileys": "^7.0.0-rc.9",
"arctic": "^2.0.0",
"better-sqlite3": "^12.6.2",
"dockerode": "^4.0.0",
"dotenv": "^17.2.3",
"drizzle-orm": "^0.45.1",
"exceljs": "^4.4.0",
"googleapis": "^171.2.0",
"hono": "^4.6.0",
"jose": "^5.9.0",
"node-cron": "^4.2.1",
"node-llama-cpp": "^3.15.1",
"openai": "^4.70.0",
"pdf-lib": "^1.17.1",
"pdf-parse": "^2.4.5",
"pino": "^10.3.0",
"playwright": "^1.48.0",
"pptxgenjs": "^4.0.1",
"qrcode": "^1.5.4",
"qrcode-terminal": "^0.12.0",
"sqlite-vec": "^0.1.7-alpha.2",
"ssh2": "^1.17.0",
"ws": "^8.18.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.11",
"@types/dockerode": "^3.3.31",
"@types/node": "^22.0.0",
"@types/qrcode-terminal": "^0.12.2",
"@types/ws": "^8.5.12",
"drizzle-kit": "^0.27.0",
"eslint": "^9.0.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vitest": "^2.1.0"
},
"keywords": [
"ai",
"assistant",
"openai",
"anthropic",
"deepseek",
"multi-model",
"agent"
],
"license": "MIT",
"author": ""
}