acpus 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +97 -0
- package/dist/cli.d.mts +1 -0
- package/dist/cli.mjs +3860 -0
- package/dist/index.d.mts +2742 -0
- package/dist/index.mjs +2 -0
- package/dist/monitor-app-CSjUPe9j.mjs +434 -0
- package/dist/run-workflow-CbxKhAqF.mjs +13586 -0
- package/package.json +76 -0
- package/schemas/workflow-spec.schema.json +2042 -0
package/package.json
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "acpus",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "Runtime-driven workflow orchestrator for ACP agents",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"acpx",
|
|
8
|
+
"workflow",
|
|
9
|
+
"orchestrator",
|
|
10
|
+
"agent",
|
|
11
|
+
"cli"
|
|
12
|
+
],
|
|
13
|
+
"license": "MIT",
|
|
14
|
+
"author": "kkkyran",
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "git+https://github.com/kelvinschen/acpus.git"
|
|
18
|
+
},
|
|
19
|
+
"homepage": "https://github.com/kelvinschen/acpus#readme",
|
|
20
|
+
"bugs": {
|
|
21
|
+
"url": "https://github.com/kelvinschen/acpus/issues"
|
|
22
|
+
},
|
|
23
|
+
"type": "module",
|
|
24
|
+
"bin": {
|
|
25
|
+
"acpus": "dist/cli.mjs"
|
|
26
|
+
},
|
|
27
|
+
"main": "dist/index.mjs",
|
|
28
|
+
"types": "dist/index.d.mts",
|
|
29
|
+
"exports": {
|
|
30
|
+
".": {
|
|
31
|
+
"import": "./dist/index.mjs",
|
|
32
|
+
"types": "./dist/index.d.mts"
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
"files": [
|
|
36
|
+
"dist",
|
|
37
|
+
"schemas",
|
|
38
|
+
"LICENSE",
|
|
39
|
+
"README.md"
|
|
40
|
+
],
|
|
41
|
+
"engines": {
|
|
42
|
+
"node": ">=22.13.0"
|
|
43
|
+
},
|
|
44
|
+
"scripts": {
|
|
45
|
+
"build": "tsdown",
|
|
46
|
+
"typecheck": "tsc --noEmit",
|
|
47
|
+
"test": "vitest run",
|
|
48
|
+
"test:unit": "vitest run test/unit",
|
|
49
|
+
"test:integration": "vitest run test/integration",
|
|
50
|
+
"test:e2e:fake": "vitest run test/e2e/fake",
|
|
51
|
+
"test:e2e:real": "RUN_REAL_ACPX_E2E=1 vitest run test/e2e/real",
|
|
52
|
+
"generate:schema": "tsx src/schema/generate-json-schema.ts",
|
|
53
|
+
"validate": "npm run typecheck && npm run test && npm run generate:schema && npm run build"
|
|
54
|
+
},
|
|
55
|
+
"dependencies": {
|
|
56
|
+
"acpx": "^0.10.0",
|
|
57
|
+
"commander": "^14.0.3",
|
|
58
|
+
"execa": "^9.6.1",
|
|
59
|
+
"fast-glob": "^3.3.3",
|
|
60
|
+
"ink": "^7.0.5",
|
|
61
|
+
"jsonrepair": "^3.14.0",
|
|
62
|
+
"kleur": "^4.1.5",
|
|
63
|
+
"proper-lockfile": "^4.1.2",
|
|
64
|
+
"react": "^19.2.7",
|
|
65
|
+
"zod": "^4.4.3"
|
|
66
|
+
},
|
|
67
|
+
"devDependencies": {
|
|
68
|
+
"@types/node": "^20.19.39",
|
|
69
|
+
"@types/react": "^19.2.16",
|
|
70
|
+
"ink-testing-library": "^4.0.0",
|
|
71
|
+
"tsdown": "^0.22.1",
|
|
72
|
+
"tsx": "^4.22.3",
|
|
73
|
+
"typescript": "^6.0.3",
|
|
74
|
+
"vitest": "^4.1.7"
|
|
75
|
+
}
|
|
76
|
+
}
|