-
-
Notifications
You must be signed in to change notification settings - Fork 339
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.52 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.52 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": "claude-code-plugins-monorepo",
"version": "4.33.0",
"private": true,
"packageManager": "pnpm@9.15.9+sha512.68046141893c66fad01c079231128e9afb89ef87e2691d69e4d40eee228988295fd4682181bae55b58418c3a253bde65a505ec7c5f9403ece5cc3cd37dcf2531",
"description": "Claude Code plugins workspace - simple plugins + MCP servers",
"scripts": {
"dev": "pnpm --filter '*' dev --parallel",
"build": "pnpm --filter '*' build",
"test": "pnpm --filter '*' test",
"lint": "pnpm --filter '*' lint",
"typecheck": "pnpm --filter '*' typecheck",
"sync-marketplace": "node scripts/sync-marketplace.cjs && node scripts/generate-plugin-package-jsons.mjs && node scripts/generate-readme-toc.mjs",
"sync-marketplace:json-only": "node scripts/sync-marketplace.cjs",
"build-cowork": "node scripts/build-cowork-zips.mjs",
"update-metrics": "node scripts/update-metrics.mjs",
"verify": "node scripts/run-verification-pipeline.mjs",
"lint:root": "eslint .",
"lint:design": "node scripts/lint-design-tells.mjs",
"lint:design:strict": "node scripts/lint-design-tells.mjs --strict",
"format:check": "prettier --check 'scripts/**/*.{js,mjs,cjs,ts}' '*.{js,mjs,cjs,ts,json,md,yml,yaml}' 'packages/cli/src/**/*.{ts,json}'",
"format": "prettier --write 'scripts/**/*.{js,mjs,cjs,ts}' '*.{js,mjs,cjs,ts,json,md,yml,yaml}' 'packages/cli/src/**/*.{ts,json}'",
"prepare": "husky"
},
"keywords": [
"claude-code",
"plugins",
"mcp",
"monorepo"
],
"author": "Intent Solutions IO",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jeremylongshore/claude-code-plugins-plus-skills.git"
},
"homepage": "https://tonsofskills.com",
"bugs": {
"url": "https://github.com/jeremylongshore/claude-code-plugins-plus-skills/issues"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"devDependencies": {
"@commitlint/cli": "^20.5.3",
"@commitlint/config-conventional": "^20.5.3",
"@eslint/js": "^9.39.4",
"@intentsolutions/audit-harness": "^1.1.5",
"@intentsolutions/core": "0.4.1",
"@types/node": "^20.19.41",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"archiver": "^7.0.1",
"eslint": "^9.39.4",
"husky": "^9.1.7",
"js-yaml": "^4.1.1",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.60.0",
"vitest": "^2.1.9"
},
"pnpm": {
"overrides": {
"esbuild": ">=0.25.0",
"vite": ">=6.4.2",
"qs": ">=6.15.2"
}
}
}