-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.43 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.43 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
87
{
"name": "@sagentic-ai/sagentic-af",
"version": "0.3.4",
"description": "Sagentic.ai Agent Framework",
"homepage": "https://sagentic.ai",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/sagentic-ai/sagentic-af.git"
},
"author": "Ahyve AI Inc. <hello@sagentic.ai>",
"license": "BUSL-1.1",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"bin": {
"sagentic": "dist/bin/sagentic.js"
},
"scripts": {
"build": "rm -rf dist && tsc && cp -R templates dist/templates && chmod u+x dist/bin/sagentic.js",
"test": "jest --coverage",
"docs": "typedoc --options typedoc.json",
"cli": "pnpm build && node ./dist/bin/sagentic.js",
"lint": "eslint --ext .ts src",
"local": "pnpm build && npm install -g .",
"package:publish": "pnpm build && npm publish --access private"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.20.9",
"@azure/openai": "^2.0.0",
"@fastify/middie": "^9.0.3",
"@fastify/multipart": "^9.3.0",
"@google/generative-ai": "^0.24.1",
"axios": "^1.13.2",
"chalk": "^4.1.2",
"chokidar": "^5.0.0",
"cli-progress": "^3.12.0",
"commander": "^14.0.2",
"depcheck": "^1.4.7",
"dotenv": "^17.2.3",
"fastify": "^5.6.2",
"form-data": "^4.0.5",
"get-port": "^7.1.0",
"jsonrepair": "^3.13.1",
"loglevel": "^1.9.2",
"middie": "^7.1.0",
"moment": "^2.30.1",
"moment-duration-format": "^2.3.2",
"node-fetch": "^3.3.2",
"openai": "^6.9.1",
"pino": "^10.1.0",
"prompts": "^2.4.2",
"short-uuid": "^6.0.3",
"tar": "^7.5.2",
"tiktoken": "^1.0.22",
"ts-morph": "^27.0.2",
"uuid": "^13.0.0",
"zod": "^3.24.1",
"zod-to-json-schema": "^3.23.5"
},
"devDependencies": {
"@jest/globals": "^30.2.0",
"@tsconfig/node18": "^18.2.6",
"@types/cli-progress": "^3.11.6",
"@types/jest": "^30.0.0",
"@types/node": "^24.10.1",
"@types/node-fetch": "^2.6.13",
"@types/prompts": "^2.4.9",
"@types/tar": "^6.1.13",
"@types/uuid": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^8.48.1",
"@typescript-eslint/parser": "^8.48.1",
"eslint": "^9.39.1",
"husky": "^9.1.7",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typedoc": "^0.28.15",
"typedoc-plugin-markdown": "^4.9.0",
"typedoc-vitepress-theme": "^1.1.2",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=18"
}
}