-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.74 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.74 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
{
"name": "@statelyai/agent",
"version": "2.0.0-next.5",
"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 <david@stately.ai>",
"license": "MIT",
"devDependencies": {
"@ai-sdk/anthropic": "^0.0.54",
"@ai-sdk/openai": "^1.3.22",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.4",
"@langchain/community": "^0.0.53",
"@langchain/core": "^0.1.63",
"@langchain/openai": "^0.0.28",
"@tavily/core": "^0.0.2",
"@types/node": "^20.17.47",
"@types/object-hash": "^3.0.6",
"@vitest/coverage-v8": "^2.1.9",
"ai": "^4.3.15",
"dotenv": "^16.5.0",
"json-schema-to-ts": "^3.1.1",
"ts-node": "^10.9.2",
"tsup": "^8.4.0",
"typescript": "^5.8.3",
"vitest": "^2.1.9",
"wikipedia": "^2.1.2",
"zod": "^3.24.4"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@xstate/graph": "^2.0.1",
"ajv": "^8.17.1",
"object-hash": "^3.0.0",
"xstate": "^5.19.3",
"zod-to-json-schema": "^3.24.5"
},
"peerDependencies": {
"ai": "^4.3.10"
},
"packageManager": "pnpm@8.11.0"
}