-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.6 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.6 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
70
71
{
"name": "@ww-ai-lab/auto-ziniao",
"version": "0.1.3",
"description": "Workspace for Auto Ziniao, a ZClaw-based reusable store-operation flow engine.",
"private": true,
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "git+https://github.com/WW-AI-Lab/auto-ziniao.git"
},
"bugs": {
"url": "https://github.com/WW-AI-Lab/auto-ziniao/issues"
},
"homepage": "https://github.com/WW-AI-Lab/auto-ziniao#readme",
"keywords": [
"auto-ziniao",
"zclaw",
"automation",
"flow",
"self-heal"
],
"packageManager": "pnpm@10.32.1",
"engines": {
"node": ">=22"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"auto-ziniao": "dist/bin/auto-ziniao.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"flows",
"extracts",
"heal_templates",
"docs",
"skills",
"packages/schemas/json-schema",
"AGENTS.md",
"config.example.json",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -b packages/core packages/schemas packages/zclaw packages/flow-engine packages/self-heal packages/cli apps/api && pnpm --filter @ww-ai-lab/auto-ziniao-web build && pnpm build:npm",
"build:npm": "rm -rf dist && esbuild packages/cli/src/index.ts packages/cli/src/bin/auto-ziniao.ts --bundle --platform=node --format=esm --target=node22 --outdir=dist --outbase=packages/cli/src --packages=bundle --banner:js=\"import { createRequire } from 'node:module'; const require = createRequire(import.meta.url);\" && node -e \"require('node:fs').writeFileSync('dist/index.d.ts', 'export declare function runCli(args: string[]): Promise<number>;\\n'); require('node:fs').chmodSync('dist/bin/auto-ziniao.js', 0o755)\"",
"typecheck": "tsc -b packages/core packages/schemas packages/zclaw packages/flow-engine packages/self-heal packages/cli apps/api apps/web --pretty false",
"test": "vitest run",
"auto-ziniao": "tsx packages/cli/src/bin/auto-ziniao.ts",
"api": "tsx apps/api/src/index.ts",
"web": "pnpm --filter @ww-ai-lab/auto-ziniao-web dev",
"web:build": "pnpm --filter @ww-ai-lab/auto-ziniao-web build",
"schemas:export": "tsx packages/schemas/scripts/export-json-schema.ts",
"security:scan": "tsx scripts/security-scan.ts",
"validate:baseline": "pnpm typecheck && pnpm test && pnpm build && pnpm schemas:export -- --check && pnpm security:scan"
},
"devDependencies": {
"@types/node": "^24.10.1",
"esbuild": "^0.28.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.14"
}
}