-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.02 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.02 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
{
"name": "claude-code-plugins",
"version": "1.0.0",
"description": "A curated marketplace of plugins for [Claude Code](https://www.anthropic.com/news/claude-code-plugins), providing custom collections of slash commands, agents, MCP servers, and hooks to enhance your development workflow.",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"build": "turbo build --concurrency 16",
"dev": "turbo run dev",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"test": "turbo test --concurrency 16",
"test:projects": "vitest run",
"test:projects:watch": "vitest --watch",
"test:integration": "bun test --timeout 600000 packages/**/tests/integration/**/*.integration.test.ts",
"test:all": "bun run test && bun run test:integration",
"view-report": "turbo run view-report",
"e2e": "turbo run e2e",
"e2e:ui": "turbo run e2e:ui",
"e2e:debug": "turbo run e2e:debug",
"e2e:headed": "turbo run e2e:headed",
"e2e:install": "turbo run e2e:install",
"prepare": "husky",
"skills:init": "bun scripts/cli.ts init",
"skills:sync": "bun scripts/cli.ts sync",
"skills:check": "bun scripts/cli.ts check",
"skills:cleanup": "bun scripts/cli.ts cleanup"
},
"devDependencies": {
"@antfu/eslint-config": "^7.6.1",
"eslint": "^10.0.2",
"@pleaseai/vitest-config": "workspace:*",
"@commitlint/cli": "^20.4.3",
"@commitlint/config-conventional": "^19.8.1",
"husky": "^9.1.7",
"prettier": "^3.2.5",
"turbo": "^2.8.13",
"typescript": "5.9.3",
"vitest": "^4.1.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pleaseai/claude-code-plugins.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/pleaseai/claude-code-plugins/issues"
},
"homepage": "https://github.com/pleaseai/claude-code-plugins#readme",
"packageManager": "bun@1.3.10",
"engines": {
"node": "22.x"
},
"workspaces": [
"packages/*",
"apps/*",
"plugins/*"
]
}