-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.42 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
{
"name": "openagentflow",
"version": "0.1.5",
"description": "An open, portable specification for describing AI agent workflows using a human-readable text language.",
"type": "module",
"main": "compiler/index.js",
"bin": {
"oaf": "cli/index.js"
},
"exports": {
".": "./compiler/index.js",
"./parser": "./parser/index.js",
"./adapters/langgraph": "./adapters/langgraph/index.js",
"./cli": "./cli/index.js",
"./package.json": "./package.json"
},
"files": [
"cli",
"compiler",
"parser",
"adapters",
"README.md",
"LICENSE"
],
"scripts": {
"test": "node --test tests/**/*.test.js",
"test:update-snapshots": "node -e \"process.env.UPDATE_SNAPSHOTS='1'; import('./tests/snapshot.test.js')\"",
"preversion": "npm test",
"version": "npm run test:update-snapshots && git add tests/snapshots",
"oaf": "node cli/index.js"
},
"keywords": [
"ai",
"agents",
"workflow",
"dsl",
"langgraph",
"autogen",
"crewai",
"openagentflow"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/OpenAgentFlow/OpenAgentFlow.git"
},
"bugs": {
"url": "https://github.com/OpenAgentFlow/OpenAgentFlow/issues"
},
"homepage": "https://github.com/OpenAgentFlow/OpenAgentFlow#readme",
"publishConfig": {
"access": "public",
"provenance": true
},
"engines": {
"node": ">=18.0.0"
}
}