-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.26 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.26 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
{
"name": "luma_agent",
"version": "0.0.1",
"description": "",
"main": "src/index.ts",
"bin": {
"vivid": "dist/index.js"
},
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc && node scripts/copy-assets.mjs",
"start": "node dist/index.js",
"prod": "node dist/index.js",
"service": "node dist/index.js service",
"service:dev": "tsx src/index.ts service",
"tui": "node dist/index.js tui",
"tui:dev": "tsx src/index.ts tui",
"pm2:start": "pm2 start ecosystem.config.cjs",
"pm2:stop": "pm2 stop vivid-service && pm2 delete vivid-service"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"@types/yargs": "^17.0.35",
"chalk": "^5.6.2",
"cheerio": "^1.2.0",
"commander": "^14.0.3",
"discord.js": "^14.26.2",
"dotenv": "^17.3.1",
"marked": "^15.0.12",
"marked-terminal": "^7.3.0",
"node-fetch": "^3.3.2",
"openai": "^6.25.0",
"tiktoken": "^1.0.22",
"turndown": "^7.2.4",
"yargs": "^18.0.0"
},
"devDependencies": {
"@types/marked": "^5.0.2",
"@types/marked-terminal": "^6.1.1",
"@types/node": "^25.3.3",
"@types/turndown": "^5.0.6",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}