-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.18 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
{
"name": "@blutagent/stepforge",
"version": "1.0.0",
"description": "Improved workflow engine for AI agents — with validation, variables, retries, rollback, and parallel instances",
"type": "module",
"bin": {
"stepforge": "./bin/stepforge.js"
},
"files": [
"bin/",
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "esbuild src/index.ts --bundle --platform=node --target=node18 --format=esm --outfile=dist/stepforge.js --external:better-sqlite3 --banner:js=\"import { createRequire } from 'module'; const require = createRequire(import.meta.url);\"",
"postbuild": "npm rebuild better-sqlite3",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"agent",
"workflow",
"ai",
"state-machine",
"yaml"
],
"license": "MIT",
"author": "BlutAgent",
"dependencies": {
"better-sqlite3": "^11.10.0",
"commander": "^12.0.0",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.0.0",
"esbuild": "^0.21.0",
"typescript": "^5.4.0",
"vitest": "^4.1.4"
},
"engines": {
"node": ">=18.0.0"
}
}