-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.65 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.65 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
{
"name": "patterson-cli",
"version": "0.1.0",
"description": "patterson — template-driven scaffolder and AI-agent configuration manager. Workspace root (private).",
"private": true,
"type": "module",
"author": "Daniel Bodnar",
"license": "LicenseRef-Patterson-Internal",
"repository": {
"type": "git",
"url": "git+https://github.com/patterson-agents/cli.git"
},
"homepage": "https://github.com/patterson-agents/cli#readme",
"bugs": {
"url": "https://github.com/patterson-agents/cli/issues"
},
"engines": {
"bun": ">=1.3.0"
},
"packageManager": "bun@1.3.14",
"keywords": [
"patterson",
"ai-agents",
"scaffolding",
"mcp",
"claude-code",
"copilot",
"opencode",
"developer-tools"
],
"workspaces": [
"packages/*",
"packages/emitters/*"
],
"bun-create": {
"postinstall": "bunx create-patterson --resume"
},
"scripts": {
"cli": "bun run packages/cli/src/index.ts",
"dev": "bun run --watch packages/cli/src/index.ts",
"create": "bun run packages/cli/src/index.ts create",
"sync": "bun run packages/cli/src/index.ts sync",
"doctor": "bun run packages/cli/src/index.ts doctor",
"check": "bun run packages/cli/src/index.ts check",
"mcp": "bun run packages/mcp/src/index.ts",
"test": "bun test",
"test:watch": "bun test --watch",
"test:core": "bun test packages/core",
"test:cli": "bun test packages/cli",
"test:emitters": "bun test packages/emitters",
"test:mcp": "bun test packages/mcp",
"test:e2e": "bun test packages/cli/test/skeleton.e2e.test.ts",
"test:coverage": "bun test --coverage",
"typecheck": "tsc --noEmit",
"lint": "oxlint .",
"lint:fix": "oxlint . --fix",
"gate": "bun run typecheck; bun run test; bun run lint",
"docs:dev": "bun run --cwd docs dev",
"docs:build": "bun run --cwd docs build",
"docs:preview": "bun run --cwd docs preview",
"build:binary": "bun build --compile packages/cli/src/index.ts --outfile dist/patterson",
"demo": "bun run packages/cli/src/index.ts create /tmp/patterson-demo --yes --template skeleton --agents claude-code --no-install --no-git --force",
"skills:list": "bunx skills@1.5.21 list",
"skills:add": "bunx skills@1.5.21 add",
"hooks:install": "lefthook install",
"deps:score": "socket package shallow npm",
"clean": "rm -rf packages/*/dist packages/emitters/*/dist docs/dist docs/.astro"
},
"devDependencies": {
"@types/bun": "latest",
"oxlint": "1.76.0",
"lefthook": "2.1.10",
"@commitlint/cli": "21.2.1",
"@commitlint/config-conventional": "21.2.0",
"skills": "1.5.21"
},
"peerDependencies": {
"typescript": "^5"
}
}