-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.11 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.11 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
{
"name": "praisonai",
"version": "1.0.19",
"description": "PraisonAI TypeScript AI Agents Framework - Node.js, npm, and Javascript AI Agents Framework",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint . --ext .ts",
"prepare": "npm run build",
"start": "ts-node src/main.ts",
"dev": "ts-node-dev --respawn src/main.ts",
"example:arxiv": "ts-node examples/tools/arxiv-tools.ts",
"clean": "rimraf dist",
"prebuild": "npm run clean"
},
"keywords": [
"ai",
"agent",
"ai agent",
"ai agents",
"typescript ai",
"typescript ai agent",
"javascript ai agent",
"typescript ai agents",
"javascript ai agents",
"npm ai agent framework",
"npm ai agents framework",
"node ai agent framework",
"node ai agents framework",
"praisonai",
"ai agents framework",
"typescript ai agents framework",
"javascript ai agents framework",
"ai framework",
"typescript ai framework",
"javascript ai framework",
"ai agent framework",
"typescript ai agent framework",
"javascript ai agent framework"
],
"author": "Mervin Praison",
"license": "MIT",
"devDependencies": {
"@types/figlet": "^1.7.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.12.0",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"eslint": "^9.19.0",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.3"
},
"dependencies": {
"axios": "^1.7.9",
"dotenv": "^16.4.7",
"fast-xml-parser": "^4.5.1",
"node-fetch": "^2.6.9",
"openai": "^4.81.0",
"@modelcontextprotocol/sdk": "^1.12.1"
},
"optionalDependencies": {
"boxen": "^7.1.1",
"chalk": "^4.1.2",
"cli-table3": "^0.6.3",
"figlet": "^1.7.0",
"ora": "^5.4.1"
},
"overrides": {
"whatwg-url": "^14.1.0",
"node-fetch": "^2.6.9"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}