-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.7 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.7 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
{
"name": "sentient-agent-framework",
"version": "1.1.1",
"description": "TypeScript/Node.js implementation of the Sentient Agent Framework for building AI agents with streaming responses",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"sentient-cli": "dist/cli.js"
},
"files": [
"dist/**/*"
],
"author": "Sentient AGI",
"homepage": "https://github.com/alanchelmickjr/sentient-node-sdk",
"repository": {
"type": "git",
"url": "https://github.com/alanchelmickjr/sentient-node-sdk.git"
},
"bugs": {
"url": "https://github.com/alanchelmickjr/sentient-node-sdk/issues"
},
"keywords": [
"agent",
"sentient",
"ai",
"typescript",
"node",
"nextjs"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint src --ext .ts,.tsx",
"test": "jest",
"clean": "rimraf dist",
"prepublishOnly": "npm run clean && npm run build",
"cli": "ts-node src/cli.ts",
"start": "node dist/cli.js",
"example-server": "ts-node examples/simple-server.ts"
},
"license": "MIT",
"dependencies": {
"axios": "^1.12.2",
"events": "^3.3.0",
"express": "^4.18.2",
"node-fetch": "^3.3.2",
"sentient-agent-framework": "^1.1.1",
"ulid": "^2.3.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.14",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}