forked from Athena-AI-Lab/athena-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.65 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
{
"name": "athena-core",
"version": "1.0.0",
"type": "module",
"main": "dist/main.js",
"files": [
"dist"
],
"scripts": {
"dev": "tsx watch --include ./src src/main.ts configs/config.yaml",
"start": "npm run build && npm run fast-start",
"fast-start": "node dist/main.js configs/config.yaml",
"build": "npm run clean && npm run fast-build",
"fast-build": "swc src -d dist --strip-leading-paths",
"clean": "rm -rf dist"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Athena-AI-Lab/athena-core.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Athena-AI-Lab/athena-core/issues"
},
"homepage": "https://athenalab.ai/",
"description": "",
"dependencies": {
"@supabase/supabase-js": "^2.49.1",
"amadeus": "^11.0.0",
"discord.js": "^14.17.3",
"follow-redirects": "^1.15.9",
"html-to-text": "^9.0.5",
"image2uri": "^2.1.2",
"istextorbinary": "^9.5.0",
"jsdom": "^26.0.0",
"jsonrepair": "^3.12.0",
"mime-types": "^2.1.35",
"node-telegram-bot-api": "^0.63.0",
"openai": "^4.78.1",
"playwright": "^1.51.1",
"python-shell": "^5.0.0",
"winston": "^3.17.0",
"winston-transport": "^4.9.0",
"ws": "^8.18.0",
"yaml": "^2.7.0"
},
"devDependencies": {
"@swc/cli": "^0.6.0",
"@swc/core": "^1.11.7",
"@types/follow-redirects": "^1.14.4",
"@types/html-to-text": "^9.0.4",
"@types/jsdom": "^21.1.7",
"@types/mime-types": "^2.1.4",
"@types/node": "^22.10.5",
"@types/node-telegram-bot-api": "^0.64.7",
"@types/ws": "^8.5.14",
"tsx": "^4.19.3",
"typescript": "^5.7.3"
}
}