-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
62 lines (62 loc) · 1.7 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
{
"name": "@statelyai/agent",
"version": "2.0.0-next.4",
"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",
"coverage": "vitest run --coverage"
},
"keywords": [
"ai",
"state machine",
"agent",
"rl",
"reinforcement learning"
],
"author": "David Khourshid <[email protected]>",
"license": "MIT",
"devDependencies": {
"@ai-sdk/anthropic": "^0.0.54",
"@ai-sdk/openai": "^0.0.40",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.11",
"@langchain/community": "^0.0.53",
"@langchain/core": "^0.1.63",
"@langchain/openai": "^0.0.28",
"@tavily/core": "^0.0.2",
"@types/node": "^20.17.11",
"@types/object-hash": "^3.0.6",
"@vitest/coverage-v8": "^2.1.8",
"dotenv": "^16.4.7",
"json-schema-to-ts": "^3.1.1",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^2.1.8",
"wikipedia": "^2.1.2",
"zod": "^3.24.1"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@xstate/graph": "^2.0.1",
"ai": "^4.0.26",
"ajv": "^8.17.1",
"object-hash": "^3.0.0",
"xstate": "^5.19.1",
"zod-to-json-schema": "^3.24.1"
},
"packageManager": "[email protected]"
}