forked from claude-code-best/claude-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.7 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
66
67
68
69
{
"name": "@claude-code-best/workflow-engine",
"version": "0.1.0",
"description": "Deterministic JS script orchestration engine for multi-agent workflows. Zero core-layer runtime dependencies; talks to the world via port adapters.",
"type": "module",
"license": "MIT",
"author": "claude-code-best <claude-code-best@proton.me>",
"homepage": "https://github.com/claude-code-best/claude-code/tree/main/packages/workflow-engine#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/claude-code-best/claude-code.git",
"directory": "packages/workflow-engine"
},
"bugs": {
"url": "https://github.com/claude-code-best/claude-code/issues"
},
"keywords": [
"workflow",
"orchestration",
"multi-agent",
"claude",
"automation",
"scripting",
"deterministic"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"src",
"!src/**/__tests__",
"!src/**/*.test.ts",
"scripts/build.ts",
"tsconfig.json",
"tsconfig.build.json",
"README.md",
"LICENSE"
],
"sideEffects": false,
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"ajv": "^8.18.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@anthropic-ai/sdk": "^0.81.0",
"bun-types": "latest"
},
"scripts": {
"build": "bun run scripts/build.ts",
"typecheck": "tsc --noEmit",
"test": "bun test",
"prepublishOnly": "bun run test && bun run build"
}
}