-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.9 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.9 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
{
"name": "athena-core",
"version": "1.0.0",
"type": "module",
"main": "dist/main.js",
"files": [
"dist"
],
"scripts": {
"dev": "tsx 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",
"typecheck": "tsc --noEmit",
"lint": "prettier --check .",
"lint:fix": "prettier --write ."
},
"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.4",
"amadeus": "^11.0.0",
"discord.js": "^14.18.0",
"follow-redirects": "^1.15.9",
"html-to-text": "^9.0.5",
"image2uri": "^2.1.2",
"ink": "^5.2.1",
"istextorbinary": "^9.5.0",
"jsdom": "^26.1.0",
"jsonrepair": "^3.12.0",
"mime-types": "^2.1.35",
"node-telegram-bot-api": "^0.63.0",
"openai": "^4.95.1",
"playwright": "^1.52.0",
"python-shell": "^5.0.0",
"react": "18.3.1",
"sqlite-vec": "0.1.7-alpha.2",
"winston": "^3.17.0",
"winston-transport": "^4.9.0",
"ws": "^8.18.1",
"yaml": "^2.7.1"
},
"devDependencies": {
"@swc/cli": "^0.6.0",
"@swc/core": "^1.11.21",
"@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.14.1",
"@types/node-telegram-bot-api": "^0.64.8",
"@types/react": "^18.3.21",
"@types/ws": "^8.18.1",
"prettier": "^3.5.3",
"tsx": "^4.19.3",
"typescript": "^5.8.3"
},
"packageManager": "pnpm@10.12.2"
}