-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.52 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.52 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
{
"name": "@pacphi/agentic-kit",
"version": "4.0.0-alpha.33",
"description": "Setup, healing, verification, and multi-host execution routing (Claude, Codex, OpenCode) for your AI agent stack (ruflo/claude-flow, agentic-qe, RuvNet Brain) — cross-platform, zero-dependency",
"type": "module",
"bin": {
"agentic-kit": "bin/agentic-kit.mjs",
"ak": "bin/agentic-kit.mjs"
},
"engines": {
"node": ">=22"
},
"files": [
"bin/agentic-kit.mjs",
"src/",
"!src/**/.claude/**",
"!src/**/.agentic-qe/**",
"!src/**/.claude-flow/**",
"claude/",
"!claude/**/.claude/**",
"!claude/**/.agentic-qe/**",
"!claude/**/.claude-flow/**",
"docs/TROUBLESHOOTING.md",
"docs/CODEX-STATUSLINE.md",
"docs/adr/0015-managed-codex-native-statusline.md"
],
"scripts": {
"test": "node --test --experimental-test-coverage --test-coverage-lines=70 --test-coverage-branches=70 --test-coverage-functions=70 \"tests/kit/*.test.mjs\" && node tests/statusline-segments.test.cjs && node tests/statusline-brain.test.cjs && node tests/agentdb.test.cjs && node tests/health-history.test.cjs && node tests/harvest.test.cjs && node tests/dashboard.test.cjs && node tests/admin-model.test.cjs && node tests/admin.test.cjs",
"test:ui": "node tests/ui/dashboard-ui.mjs",
"test:surface": "node --test tests/kit/dispatch-surface.test.mjs",
"typecheck": "tsc -p tsconfig.json",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:md": "markdownlint-cli2",
"lint:md:fix": "markdownlint-cli2 --fix",
"lint:links": "lychee --config lychee.toml README.md CLAUDE.md AGENTS.md 'docs/**/*.md'",
"lint:links:internal": "lychee --offline --config lychee.toml README.md CLAUDE.md AGENTS.md 'docs/**/*.md'",
"build": "node scripts/build-check.mjs",
"audit": "pnpm audit --audit-level=moderate",
"audit:fix": "pnpm audit --fix",
"outdated": "pnpm outdated",
"upgrade": "pnpm up",
"check": "pnpm run typecheck && pnpm run lint && pnpm run lint:md && pnpm run build && pnpm test"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^26.1.1",
"eslint": "^10.7.0",
"globals": "^17.7.0",
"markdownlint-cli2": "^0.23.0",
"playwright": "^1.62.0",
"typescript": "^7.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pacphi/agentic-kit.git"
},
"license": "MIT",
"keywords": [
"ruflo",
"claude-flow",
"agentic-qe",
"claude-code",
"setup",
"cross-platform"
],
"packageManager": "pnpm@11.17.0"
}