-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.18 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
{
"name": "openwren",
"version": "2026.3.11",
"description": "Self-hosted personal AI assistant bot with multi-channel support (Telegram, Discord, WebSocket)",
"main": "dist/index.js",
"bin": {
"openwren": "dist/cli.js"
},
"files": [
"dist/",
"README.md"
],
"scripts": {
"build": "rm -rf dist && tsup && cp -r src/templates dist/templates && cp -r src/skills dist/skills && cp -r drizzle dist/drizzle && npm run build:webui",
"build:webui": "cd webui && npm run build && mkdir -p ../dist/webui && cp -r dist ../dist/webui/dist",
"typecheck": "tsc",
"start": "node dist/index.js",
"dev": "concurrently -n backend,webui -c blue,magenta \"tsx src/index.ts\" \"cd webui && npm run dev\"",
"cli": "tsx src/cli.ts",
"scratch": "tsx src/scratch.ts"
},
"keywords": [
"ai",
"agent",
"bot",
"telegram",
"discord",
"claude",
"ollama",
"self-hosted",
"personal-assistant"
],
"author": "Nermin Bajagilovic <nermion@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/openwrenai/openwren.git"
},
"homepage": "https://github.com/openwrenai/openwren",
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.3.0",
"concurrently": "^9.2.1",
"drizzle-kit": "^0.31.9",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.64",
"@ai-sdk/deepseek": "^2.0.26",
"@ai-sdk/google": "^3.0.53",
"@ai-sdk/groq": "^3.0.31",
"@ai-sdk/mistral": "^3.0.27",
"@ai-sdk/openai": "^3.0.48",
"@ai-sdk/xai": "^3.0.74",
"@anthropic-ai/sdk": "^0.77.0",
"@fastify/static": "^9.0.0",
"@fastify/websocket": "^11.2.0",
"@llmgateway/ai-sdk-provider": "^3.5.0",
"@mozilla/readability": "^0.6.0",
"ai": "^6.0.141",
"better-sqlite3": "^12.8.0",
"comment-json": "^5.0.0",
"croner": "^10.0.1",
"discord.js": "^14.25.1",
"dotenv": "^17.3.1",
"drizzle-orm": "^0.45.1",
"fastify": "^5.7.4",
"grammy": "^1.40.0",
"json5": "^2.2.3",
"linkedom": "^0.18.12"
}
}