-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.49 KB
/
package.json
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
{
"name": "@pompeii-labs/magma",
"version": "1.2.9",
"description": "The Typescript framework to build AI agents quickly and easily",
"keywords": [
"Agents",
"Typescript",
"AI",
"Agentic",
"LLM",
"Workflows",
"Middleware"
],
"license": "Apache-2.0",
"author": "Pompeii Labs, Inc.",
"files": [
"dist"
],
"repository": "pompeii-labs/magma",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./decorators": {
"default": "./dist/decorators.js",
"types": "./dist/decorators.d.ts"
},
"./types": {
"default": "./dist/types/index.js",
"types": "./dist/types/index.d.ts"
}
},
"scripts": {
"clean": "rimraf dist",
"format": "prettier --write \"src/**/*.ts\"",
"compile": "tsc -p tsconfig.json",
"build": "run-s clean format compile"
},
"devDependencies": {
"@types/node-cron": "^3.0.11",
"@types/ws": "^8.5.12",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"rimraf": "^6.0.1",
"typescript": "^5.6.2"
},
"dependencies": {
"dotenv": "^16.4.5",
"node-cron": "^3.0.3",
"readline": "^1.3.0",
"ws": "^8.18.0"
},
"peerDependencies": {
"@anthropic-ai/sdk": "^0.33.1",
"@google/generative-ai": "^0.21.0",
"groq-sdk": "^0.12.0",
"openai": "^4.79.1"
}
}