-
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) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.79 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": "@nanohype/fab",
"version": "0.2.0",
"description": "Reference factory for orchestrating Claude managed agents \u2014 open-source production-grade software pipeline with file-based skill overlays for personal recipes",
"license": "Apache-2.0",
"homepage": "https://github.com/nanohype/fab",
"repository": {
"type": "git",
"url": "https://github.com/nanohype/fab.git"
},
"bugs": {
"url": "https://github.com/nanohype/fab/issues"
},
"keywords": [
"ai",
"agents",
"claude",
"factory",
"orchestration",
"anthropic",
"managed-agents",
"skills"
],
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"bin": {
"fab": "./dist/bin/fab.js"
},
"files": [
"dist",
"skills",
"src",
"tsconfig.json",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=24"
},
"scripts": {
"build": "tsc && node scripts/copy-standards.mjs",
"typecheck": "tsc --noEmit && tsc -p tsconfig.test.json --noEmit",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"prepare": "npm run build",
"lint": "npm run typecheck && biome lint .",
"format": "biome format --write .",
"format:check": "biome format .",
"docs": "typedoc",
"standards:check": "node scripts/standards.mjs check",
"standards:sync": "node scripts/standards.mjs sync",
"standards:freshness": "node scripts/standards.mjs freshness"
},
"optionalDependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.3.161"
},
"devDependencies": {
"@biomejs/biome": "2.5.6",
"@types/node": "^25.5.2",
"@vitest/coverage-v8": "^4.1.3",
"typedoc": "^0.28.19",
"typescript": "^6.0.2",
"vitest": "^4.1.3"
}
}