forked from beidald/liliumai
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.02 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.02 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "liliumai",
"version": "1.0.0",
"description": "LiliumAI - The elegant AI agent framework for Node.js",
"main": "dist/index.js",
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc",
"download-models": "ts-node scripts/download-models.ts",
"build:bin": "npm run build && pkg .",
"check-permissions": "python3 scripts/automate_mac_permissions.py",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": "dist/index.js",
"pkg": {
"scripts": "dist/**/*.js",
"assets": [
"node_modules/**/*",
"dist/**/*"
],
"targets": [
"node18-linux-x64",
"node18-macos-x64",
"node18-win-x64"
],
"outputPath": "bin"
},
"keywords": [
"ai-agent",
"llm",
"chatbot",
"wechaty",
"openai",
"ollama",
"whisper",
"local-ai",
"nodejs",
"typescript",
"automation"
],
"author": "LiliumAI",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/beidald/liliumai.git"
},
"bugs": {
"url": "https://github.com/beidald/liliumai/issues"
},
"homepage": "https://liliumai.cn",
"dependencies": {
"@lancedb/lancedb": "^0.26.2",
"@larksuiteoapi/node-sdk": "^1.59.0",
"@slack/socket-mode": "^2.0.5",
"@slack/web-api": "^7.14.1",
"@xenova/transformers": "^2.17.2",
"apache-arrow": "16.0.0",
"axios": "^1.6.0",
"better-sqlite3": "^12.6.2",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"cron-parser": "^5.5.0",
"dingtalk-stream-sdk-nodejs": "^2.0.4",
"discord.js": "^14.25.1",
"dotenv": "^16.3.1",
"events": "^3.3.0",
"express": "^5.2.1",
"form-data": "^4.0.5",
"fs-extra": "^11.2.0",
"imap-simple": "^5.1.0",
"js-yaml": "^4.1.0",
"mailparser": "^3.9.3",
"node-cron": "^4.2.1",
"nodemailer": "^8.0.1",
"openai": "^4.20.0",
"opencc-js": "^1.0.5",
"pino": "^8.16.0",
"pino-pretty": "^10.2.3",
"playwright": "^1.58.2",
"qq-guild-bot": "^2.9.5",
"qrcode-terminal": "^0.12.0",
"socket.io": "^4.8.3",
"socket.io-client": "^4.8.3",
"sqlite-vec": "0.1.7-alpha.2",
"telegraf": "^4.16.3",
"uuid": "^9.0.0",
"wechaty": "^1.20.2",
"wechaty-puppet-wechat": "^1.18.4",
"whisper-node": "^1.1.1",
"ws": "^8.19.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/form-data": "^2.5.2",
"@types/fs-extra": "^11.0.4",
"@types/imap-simple": "^4.2.10",
"@types/js-yaml": "^4.0.9",
"@types/mailparser": "^3.4.6",
"@types/node": "^20.10.0",
"@types/node-cron": "^3.0.11",
"@types/nodemailer": "^7.0.9",
"@types/qrcode-terminal": "^0.12.2",
"@types/socket.io": "^3.0.2",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.18.1",
"pkg": "^5.8.1",
"puppeteer": "13.7.0",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"packageManager": "pnpm@9.15.4+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0"
}