-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
56 lines (56 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
{
"name": "@statelyai/agent",
"version": "1.1.6",
"description": "Stateful agents that make decisions based on finite-state machine models",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"lint": "tsc --noEmit",
"test": "vitest",
"test:ci": "vitest --run",
"example": "ts-node examples/helpers/runner.ts",
"prepublishOnly": "tsup src/index.ts --format cjs,esm --dts",
"changeset": "changeset",
"release": "changeset publish",
"version": "changeset version"
},
"keywords": [
"ai",
"state machine",
"agent",
"rl",
"reinforcement learning"
],
"author": "David Khourshid <[email protected]>",
"license": "MIT",
"devDependencies": {
"@ai-sdk/openai": "^0.0.40",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.9",
"@langchain/community": "^0.0.53",
"@langchain/core": "^0.1.63",
"@langchain/openai": "^0.0.28",
"@types/node": "^20.16.10",
"@types/object-hash": "^3.0.6",
"dotenv": "^16.4.5",
"json-schema-to-ts": "^3.1.1",
"ts-node": "^10.9.2",
"tsup": "^8.3.0",
"typescript": "^5.6.2",
"vitest": "^2.1.2",
"wikipedia": "^2.1.2",
"zod": "^3.23.8"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@xstate/graph": "^2.0.1",
"ai": "^3.4.9",
"object-hash": "^3.0.0",
"xstate": "^5.18.2"
},
"packageManager": "[email protected]"
}