-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.87 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.87 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
72
73
74
75
76
77
78
79
80
81
{
"name": "@agent-ix/ix-flow",
"description": "Agent workflow runner CLI for Agent IX.",
"version": "0.1.1",
"license": "MIT",
"type": "module",
"files": [
"dist/",
"bin/",
"LICENSE",
"README.md"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"ix-flow": "bin/ix-flow.js"
},
"packageManager": "pnpm@10.33.4",
"scripts": {
"help": "node scripts/help.js",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:json": "vitest run --reporter=json --outputFile=report.json || true",
"lint": "eslint \"src/**/*.{ts,tsx,js,jsx}\" \"tests/**/*.{ts,tsx,js,jsx}\" && pnpm run format:check",
"format": "prettier --write .",
"format:check": "prettier --check .",
"build": "vite build",
"clean": "rm -rf node_modules dist coverage .pnpm-store",
"install:frozen": "pnpm install --frozen-lockfile",
"update-lock": "pnpm install --lockfile-only",
"version": "node scripts/build-tools.js version",
"info": "node scripts/build-tools.js info",
"docker:build": "docker build -t ghcr.io/agent-ix/ix-flow .",
"publish:dry-run": "pnpm publish --dry-run",
"prepublishOnly": "pnpm run build",
"tags": "npm dist-tag ls @agent-ix/ix-flow --registry https://npm.pkg.github.com || echo '(package not found or registry unavailable)'",
"pkg:add": "pnpm add",
"pkg:add-dev": "pnpm add -D",
"pkg:update": "pnpm update",
"pkg:update-latest": "pnpm update --latest",
"pkg:use-local": "pnpm dlx @agent-ix/js-deps use-local",
"pkg:use-upstream": "pnpm dlx @agent-ix/js-deps use-upstream",
"pkg:refresh-local": "pnpm dlx @agent-ix/js-deps refresh-local",
"test-results:summary": "./node_modules/.bin/jest-results summary",
"test-results:groups": "./node_modules/.bin/jest-results groups",
"test-results:detail": "./node_modules/.bin/jest-results detail",
"test-results:find": "./node_modules/.bin/jest-results find",
"test-results:failed": "./node_modules/.bin/jest-results failed",
"test-results:errors": "./node_modules/.bin/jest-results errors",
"test-results:warnings": "./node_modules/.bin/jest-results warnings"
},
"dependencies": {
"@agent-ix/ix-cli-core": ">=0.11.0",
"yaml": "^2.9.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "25.9.1",
"@typescript-eslint/eslint-plugin": "8.60.1",
"@typescript-eslint/parser": "8.60.1",
"@vitest/coverage-v8": "4.1.8",
"add": "^2.0.6",
"eslint": "10.4.1",
"eslint-plugin-prettier": "5.5.6",
"pnpm": "11.5.2",
"prettier": "3.8.3",
"ts-node": "^10.9.2",
"typescript": "6.0.3",
"vite": "8.0.16",
"vite-plugin-dts": "5.0.2",
"vitest": "4.1.8"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/agent-ix/ix-flow.git"
}
}