-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.9 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
{
"name": "@pacphi/agentic-kit",
"version": "4.0.0-alpha.18",
"description": "Machine-level setup, healing, and verification kit for your AI agent stack (ruflo/claude-flow, agentic-qe, Claude Code glue) — 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/",
"claude/",
"docs/TROUBLESHOOTING.md"
],
"scripts": {
"test": "node --test \"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",
"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",
"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.13.0"
}