@hmj-ai/cflow 1.1.0

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/package.json ADDED
@@ -0,0 +1,68 @@
1
+ {
2
+ "name": "@hmj-ai/cflow",
3
+ "version": "1.1.0",
4
+ "description": "以 Flow 为核心的本机多 Agent 编排工作台",
5
+ "main": "dist/src/server.js",
6
+ "bin": {
7
+ "cflow": "dist/src/server.js"
8
+ },
9
+ "files": [
10
+ "dist",
11
+ "README.md",
12
+ "DESIGN.md"
13
+ ],
14
+ "engines": {
15
+ "node": ">=22"
16
+ },
17
+ "packageManager": "pnpm@10.29.2",
18
+ "scripts": {
19
+ "build": "rm -rf dist && pnpm run build:web && pnpm run build:server",
20
+ "build:web": "vite build --config web/vite.config.ts",
21
+ "build:server": "tsc -p tsconfig.json",
22
+ "prepack": "pnpm run build",
23
+ "typecheck:web": "tsc -p web/tsconfig.json --noEmit",
24
+ "start": "node dist/src/server.js",
25
+ "dev": "tsx src/server.ts",
26
+ "dev:web": "vite --config web/vite.config.ts",
27
+ "test": "tsx --test src/*.test.ts",
28
+ "format": "prettier --write src web README.md DESIGN.md package.json",
29
+ "format:check": "prettier --check src web README.md DESIGN.md package.json"
30
+ },
31
+ "publishConfig": {
32
+ "access": "public"
33
+ },
34
+ "keywords": [
35
+ "agent",
36
+ "workflow",
37
+ "orchestration",
38
+ "acp"
39
+ ],
40
+ "author": "hmj",
41
+ "license": "ISC",
42
+ "type": "module",
43
+ "dependencies": {
44
+ "@agentclientprotocol/claude-agent-acp": "^0.70.0",
45
+ "@agentclientprotocol/codex-acp": "^1.6.2",
46
+ "@agentclientprotocol/sdk": "^1.4.0",
47
+ "@fastify/multipart": "^10.1.1",
48
+ "@fastify/static": "^10.1.3",
49
+ "@tanstack/react-query": "^5.102.3",
50
+ "@types/node": "^26.2.0",
51
+ "@xyflow/react": "^12.11.3",
52
+ "ajv": "^8.20.0",
53
+ "better-sqlite3": "^13.0.3",
54
+ "fastify": "^5.12.1",
55
+ "lucide-react": "^1.34.0",
56
+ "react": "^19.2.8",
57
+ "react-dom": "^19.2.8",
58
+ "tsx": "^4.23.12",
59
+ "typescript": "^7.0.2"
60
+ },
61
+ "devDependencies": {
62
+ "@types/react": "^19.2.18",
63
+ "@types/react-dom": "^19.2.5",
64
+ "@vitejs/plugin-react": "^6.1.0",
65
+ "prettier": "^3.9.6",
66
+ "vite": "^8.2.2"
67
+ }
68
+ }