-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.66 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.66 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
{
"name": "autonomous-claude-agent-team-workflow",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "TypeScript workflow enforcement for the autonomous-claude-agent-team plugin",
"scripts": {
"lint": "eslint 'src/**/*.ts'",
"typecheck": "tsc --noEmit",
"test": "vitest run --coverage",
"deps": "depcruise src --config .dependency-cruiser.cjs",
"knip": "knip",
"demo:seed": "npx tsx scripts/seed-demo-db.ts",
"demo:view": "npx tsx scripts/seed-demo-db.ts && npx tsx scripts/demo-view.ts",
"demo:analyze": "npx tsx scripts/seed-demo-db.ts && npx tsx scripts/demo-analyze.ts",
"postinstall": "git config core.hooksPath .githooks"
},
"knip": {
"ignore": ["lint/**", "scripts/*.ts"],
"ignoreExportsUsedInFile": true,
"ignoreMembers": ["WorkflowEvent", "BaseEvent"],
"workspaces": {
"packages/workflow-control-center": {
"entry": ["src/main.ts", "src/ui/scripts/app.ts", "build-ui.mjs"],
"includeEntryExports": true
},
"packages/agentic-workflow-builder": {
"entry": ["src/dsl/index.ts", "src/engine/index.ts", "src/event-store/index.ts", "src/testing/index.ts"]
}
}
},
"pnpm": {
"onlyBuiltDependencies": ["esbuild"]
},
"dependencies": {
"@ntcoding/agentic-workflow-builder": "workspace:*",
"@vitest/eslint-plugin": "^1.0.0",
"typescript-eslint": "^8.0.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/node": "^22.19.13",
"@vitest/coverage-v8": "^2.0.0",
"dependency-cruiser": "^17.3.8",
"eslint": "^9.0.0",
"knip": "^5.85.0",
"typescript": "^5.6.0",
"tsx": "^4.0.0",
"vitest": "^2.0.0"
}
}