-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.29 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
{
"name": "jsfe",
"version": "0.9.79",
"description": "TypeScript workflow engine for conversational/automation apps: multi-flow orchestration, interrupt/resume, stack-based control, robust errors, and flexible tool/REST integration.",
"license": "MIT",
"author": "Ron Pinkas",
"repository": {
"type": "git",
"url": "git+https://github.com/ronpinkas/jsfe.git"
},
"type": "module",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"workflow",
"orchestration",
"tools",
"rag",
"ai",
"esm",
"typescript"
],
"devDependencies": {
"@types/node": "^24.2.1",
"nodemailer": "^7.0.6",
"twilio": "^5.8.2",
"typescript": "^5.9.2"
},
"dependencies": {
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"winston": "^3.17.0"
},
"homepage": "https://github.com/ronpinkas/jsfe#readme",
"bugs": {
"url": "https://github.com/ronpinkas/jsfe/issues"
}
}