-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.69 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
{
"name": "@generata/core",
"version": "1.3.0",
"description": "Composable multi-agent pipelines on top of the Claude Code CLI.",
"keywords": [
"agents",
"ai",
"ai-agents",
"claude",
"claude-code",
"cli",
"multi-agent",
"pipeline",
"workflow"
],
"homepage": "https://github.com/ben-rogerson/generata#readme",
"bugs": {
"url": "https://github.com/ben-rogerson/generata/issues"
},
"license": "ISC",
"author": "Ben Rogerson <info@benrogerson.dev>",
"repository": {
"type": "git",
"url": "git+https://github.com/ben-rogerson/generata.git",
"directory": "packages/core"
},
"bin": {
"generata": "./bin/generata"
},
"files": [
"dist",
"bin",
"src",
"templates.json",
"README.md",
"CHANGELOG.md"
],
"type": "module",
"main": "dist/define.js",
"types": "dist/define.d.ts",
"exports": {
".": {
"development": "./src/define.ts",
"types": "./dist/define.d.ts",
"default": "./dist/define.js"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "tsx src/cli.ts",
"clean": "rm -rf dist",
"build": "pnpm clean && tsc -p tsconfig.build.json",
"build:watch": "tsc -p tsconfig.build.json --watch",
"test": "node --test --import tsx 'src/**/*.test.ts'",
"typecheck": "tsc --noEmit",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check"
},
"dependencies": {
"picocolors": "^1.1.1",
"tsx": "^4.21.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^25.6.2",
"oxfmt": "^0.48.0",
"oxlint": "^1.63.0",
"oxlint-tsgolint": "^0.22.1",
"typescript": "^6.0.3"
}
}