forked from JSONbored/claudepro-directory
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
214 lines (214 loc) · 11.4 KB
/
package.json
File metadata and controls
214 lines (214 loc) · 11.4 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
{
"name": "claudepro-directory",
"private": true,
"sideEffects": false,
"version": "1.1.0",
"description": "A community-driven directory of Claude configurations including agents, MCP servers, rules, commands, and hooks",
"author": "JSONbored",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/JSONbored/claudepro-directory"
},
"keywords": [
"claude",
"ai",
"mcp",
"agents",
"configurations",
"directory"
],
"type": "module",
"packageManager": "pnpm@10.24.0",
"engines": {
"node": ">=22.0.0",
"pnpm": ">=10.0.0"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"generators:build": "pnpm --filter @heyclaude/generators build",
"deploy:web": "vercel",
"deploy:edge": "tsx packages/generators/src/bin/deploy-functions.ts",
"dev": "turbo run dev:exec",
"dev:generators": "turbo run generate:service-worker:exec",
"edge:dev": "cd apps/edge && supabase functions serve",
"edge:deploy": "pnpm --filter edge deploy:functions",
"build": "turbo run build --filter=web",
"build:analyze": "TURBOPACK_STATS=1 next build apps/web --turbopack",
"build:skills": "turbo run build:skills:exec",
"build:skills:exec": "pnpm exec heyclaude-generate-skills",
"build:mcpb": "turbo run build:mcpb:exec",
"verify:mcpb": "turbo run verify:mcpb:exec",
"generate:service-worker": "turbo run generate:service-worker:exec",
"generate:service-worker:exec": "pnpm exec heyclaude-generate-service-worker",
"generate:readme": "turbo run generate:readme:exec",
"sync:db": "pnpm exec heyclaude-sync-db --skip-dump",
"sync:db:full": "pnpm exec heyclaude-sync-db",
"sync:db:types": "pnpm exec heyclaude-sync-db --only-types",
"backup:db": "turbo run backup:db:exec",
"cache:info": "turbo run cache:info:exec",
"cache:clear": "turbo run cache:clear:exec",
"webhooks:backlog": "turbo run webhooks:backlog:exec",
"webhooks:replay": "turbo run webhooks:replay:exec",
"changelog:generate": "turbo run changelog:generate:exec",
"changelog:generate:dry": "turbo run changelog:generate:dry:exec",
"changelog:generate:branch": "turbo run changelog:generate:branch:exec",
"start": "next start apps/web",
"type-check": "turbo run type-check",
"type-check:build": "turbo run type-check --filter=web --filter=@heyclaude/web-runtime --filter=@heyclaude/data-layer --filter=@heyclaude/database-types --filter=@heyclaude/shared-runtime",
"type-check:build:sequential": "tsc --noEmit -p apps/web/tsconfig.json && tsc --noEmit -p packages/web-runtime/tsconfig.json && tsc --noEmit -p packages/data-layer/tsconfig.json && tsc --noEmit -p packages/database-types/tsconfig.json && tsc --noEmit -p packages/shared-runtime/tsconfig.json",
"type-check:web": "turbo run type-check --filter=web",
"type-check:packages": "turbo run type-check --filter=@heyclaude/web-runtime --filter=@heyclaude/data-layer --filter=@heyclaude/database-types --filter=@heyclaude/shared-runtime --filter=@heyclaude/generators",
"type-check:packages:web-runtime": "turbo run type-check --filter=@heyclaude/web-runtime",
"type-check:packages:data-layer": "turbo run type-check --filter=@heyclaude/data-layer",
"type-check:packages:shared-runtime": "turbo run type-check --filter=@heyclaude/shared-runtime",
"type-check:packages:generators": "turbo run type-check --filter=@heyclaude/generators",
"type-check:packages:database-types": "turbo run type-check --filter=@heyclaude/database-types",
"type-check:runtime": "turbo run type-check --filter=@heyclaude/web-runtime --filter=@heyclaude/shared-runtime --filter=@heyclaude/data-layer",
"type-check:edge": "pnpm --filter edge type-check",
"lint:edge": "pnpm --filter edge lint",
"lint:edge:fix": "pnpm --filter edge lint:fix",
"type-check:unused": "ts-prune",
"type-check:unused:filtered": "turbo run type-check:unused:filtered:exec",
"lint": "turbo run lint",
"lint:all": "turbo run lint --filter=web --filter=@heyclaude/web-runtime --filter=@heyclaude/data-layer --filter=@heyclaude/shared-runtime",
"lint:build": "eslint --config config/tools/eslint.config.mjs packages/web-runtime/src/data apps/web/src/app --ignore-pattern '**/*.generated.ts' --ignore-pattern '**/*.generated.tsx' --ignore-pattern '**/*.test.ts' --ignore-pattern '**/*.test.tsx' --ignore-pattern '**/*.spec.ts' --ignore-pattern '**/*.spec.tsx'",
"lint:build:fix": "eslint --config config/tools/eslint.config.mjs packages/web-runtime/src/data apps/web/src/app --ignore-pattern '**/*.generated.ts' --ignore-pattern '**/*.generated.tsx' --ignore-pattern '**/*.test.ts' --ignore-pattern '**/*.test.tsx' --ignore-pattern '**/*.spec.ts' --ignore-pattern '**/*.spec.tsx' --fix",
"lint:web": "turbo run lint --filter=web",
"lint:packages": "turbo run lint --filter=@heyclaude/web-runtime --filter=@heyclaude/data-layer --filter=@heyclaude/shared-runtime --filter=@heyclaude/generators",
"lint:packages:web-runtime": "turbo run lint --filter=@heyclaude/web-runtime",
"lint:packages:data-layer": "turbo run lint --filter=@heyclaude/data-layer",
"lint:packages:shared-runtime": "turbo run lint --filter=@heyclaude/shared-runtime",
"lint:packages:generators": "turbo run lint --filter=@heyclaude/generators",
"lint:packages:database-types": "turbo run lint --filter=@heyclaude/database-types",
"lint:runtime": "turbo run lint --filter=@heyclaude/web-runtime --filter=@heyclaude/shared-runtime --filter=@heyclaude/data-layer",
"lint:fix": "turbo run lint -- --fix",
"lint:fix:all": "turbo run lint --filter=web --filter=@heyclaude/web-runtime --filter=@heyclaude/data-layer --filter=@heyclaude/shared-runtime -- --fix",
"lint:fix:web": "turbo run lint --filter=web -- --fix",
"lint:fix:packages": "turbo run lint --filter=@heyclaude/* -- --fix",
"lint:fix:runtime": "turbo run lint --filter=@heyclaude/web-runtime --filter=@heyclaude/shared-runtime --filter=@heyclaude/data-layer -- --fix",
"validate:next-config": "tsx packages/web-runtime/src/utils/validate-next-config.ts",
"validate:client-server": "tsx packages/web-runtime/src/utils/validate-client-server-boundaries.ts",
"validate:build": "pnpm validate:next-config && pnpm validate:client-server",
"validate:build:full": "pnpm type-check:build && pnpm lint:build && pnpm validate:build",
"test": "vitest run",
"test:watch": "vitest",
"test:visual": "playwright test --config config/tests/playwright.config.ts",
"test:visual:ui": "playwright test --config config/tests/playwright.config.ts --ui",
"test:visual:update": "playwright test --config config/tests/playwright.config.ts --update-snapshots",
"test:visual:debug": "playwright test --config config/tests/playwright.config.ts --debug",
"test:visual:report": "playwright show-report",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,css,md}\" && pnpm lint:fix",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,css,md}\"",
"email:dev": "email dev --dir apps/web/src/emails --port 3001",
"email:upload": "turbo run email:upload:exec",
"dev:exec": "next dev apps/web --turbopack",
"build:mcpb:exec": "pnpm exec heyclaude-generate-mcpb",
"verify:mcpb:exec": "pnpm exec heyclaude-verify-mcpb",
"generate:readme:exec": "pnpm exec heyclaude-generate-readme",
"sync:db:exec": "pnpm exec heyclaude-sync-db --skip-dump --skip-package-builds",
"sync:db:full:exec": "pnpm exec heyclaude-sync-db --skip-package-builds",
"sync:db:types:exec": "pnpm exec heyclaude-sync-db --only-types --skip-package-builds",
"backup:db:exec": "pnpm exec heyclaude-backup-db",
"sync:db:neon:test": "cd .migration/neon-auth/sync-system && pnpm sync:types",
"sync:db:neon:test:full": "cd .migration/neon-auth/sync-system && pnpm sync:full",
"sync:db:neon:test:dump": "cd .migration/neon-auth/sync-system && pnpm sync:dump",
"sync:db:neon:test:force": "cd .migration/neon-auth/sync-system && pnpm sync:force",
"cache:info:exec": "pnpm exec heyclaude-cache info",
"cache:clear:exec": "pnpm exec heyclaude-cache clear",
"webhooks:backlog:exec": "pnpm exec heyclaude-webhooks-list",
"webhooks:replay:exec": "pnpm exec heyclaude-webhooks-replay",
"changelog:generate:exec": "pnpm exec heyclaude-changelog",
"changelog:generate:dry:exec": "pnpm exec heyclaude-changelog --dry-run",
"changelog:generate:branch:exec": "pnpm exec heyclaude-changelog --branch",
"type-check:unused:filtered:exec": "pnpm exec heyclaude-lint-unused",
"email:upload:exec": "pnpm exec heyclaude-sync-email",
"deploy:edge:exec": "tsx packages/generators/src/bin/deploy-functions.ts",
"prepare": "command -v lefthook >/dev/null 2>&1 && lefthook install || echo 'Skipping lefthook install (not available)'",
"analyze:architecture": "npx skott --displayMode=webapp",
"analyze:unused": "npx knip -c config/tools/knip.json",
"analyze:circular": "npx madge --circular --extensions ts,tsx apps/web/src/",
"analyze:circular-graph": "npx madge --circular --extensions ts,tsx --image circular-deps.svg apps/web/src/",
"analyze:all": "npm run analyze:unused && npm run analyze:circular"
},
"devDependencies": {
"@anthropic-ai/mcpb": "^2.1.2",
"@aws-sdk/client-s3": "^3.943.0",
"@eslint/js": "^9.39.1",
"@heyclaude/generators": "workspace:*",
"@playwright/test": "^1.57.0",
"@react-email/components": "^1.0.1",
"@react-email/render": "^2.0.0",
"@supabase/supabase-js": "^2.86.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@total-typescript/ts-reset": "^0.6.1",
"@types/archiver": "^7.0.0",
"@types/node": "^24.10.1",
"@typescript-eslint/eslint-plugin": "^8.48.1",
"@typescript-eslint/parser": "^8.48.1",
"archiver": "^7.0.1",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-better-tailwindcss": "^3.7.11",
"eslint-plugin-boundaries": "^5.3.0",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-jsdoc": "^61.4.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-n": "^17.23.1",
"eslint-plugin-perfectionist": "^4.15.1",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-unicorn": "^62.0.0",
"eslint-plugin-vitest": "^0.5.4",
"jsdom": "^27.2.0",
"knip": "^5.71.0",
"lefthook": "^2.0.8",
"ora": "^9.0.0",
"prettier": "^3.7.4",
"prettier-plugin-tailwindcss": "^0.7.2",
"react": "19.2.1",
"react-dom": "19.2.1",
"server-only": "^0.0.1",
"tailwindcss": "^4.1.17",
"ts-prune": "^0.10.3",
"tsx": "^4.21.0",
"turbo": "^2.6.3",
"typescript": "5.9.3",
"typescript-eslint": "^8.48.1",
"vercel": "^49.1.0",
"vitest": "^4.0.15"
},
"pnpm": {
"overrides": {
"tmp": "^0.2.3",
"glob": ">=11.1.0",
"js-yaml": ">=4.1.1",
"rimraf": ">=6.0.0",
"inflight": ">=2.0.0",
"@types/react": "19.2.5",
"@types/react-dom": "19.2.3",
"undici@>=4.5.0 <5.28.5": ">=5.28.5",
"esbuild@<=0.24.2": ">=0.25.0",
"undici@<5.29.0": ">=5.29.0",
"browserslist": "4.24.4",
"@typescript-eslint/utils": "^8.48.1"
},
"ignoredBuiltDependencies": [
"@prisma/client",
"@prisma/engines",
"@vercel/speed-insights",
"esbuild",
"lefthook",
"prisma",
"protobufjs",
"sharp",
"unrs-resolver"
]
}
}