-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.26 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
{
"name": "codingbuddy-claude-plugin",
"version": "5.6.1",
"description": "Claude Code Plugin for CodingBuddy - PLAN/ACT/EVAL workflow, specialist agents, and reusable skills",
"author": "JeremyDev87",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/JeremyDev87/codingbuddy.git",
"directory": "packages/claude-code-plugin"
},
"bugs": {
"url": "https://github.com/JeremyDev87/codingbuddy/issues"
},
"homepage": "https://github.com/JeremyDev87/codingbuddy#readme",
"keywords": [
"claude-code",
"claude-code-plugin",
"ai",
"coding-assistant",
"mcp",
"workflow",
"agents",
"skills",
"tdd",
"plan-act-eval"
],
"files": [
".claude-plugin",
".mcp.json",
"README.md",
"namespace-manifest.json",
"scripts/postinstall.js",
"hooks/",
"commands/"
],
"scripts": {
"build": "ts-node scripts/build.ts --mode=production",
"build:dev": "ts-node scripts/build.ts --mode=development",
"sync-version": "node scripts/sync-version.js",
"prebuild": "npm run sync-version",
"postinstall": "node scripts/postinstall.js",
"prepublishOnly": "npm run build",
"lint": "eslint src/ scripts/",
"typecheck": "tsc --noEmit",
"circular": "madge --circular --extensions ts src/",
"format:check": "prettier --check \"src/**/*.ts\" \"scripts/**/*.ts\"",
"validate:commands": "ts-node scripts/validate-commands.ts",
"test": "vitest run",
"test:hooks": "python3 -m pytest tests/ -v --tb=short",
"test:all": "vitest run && python3 -m pytest tests/ -v --tb=short",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"peerDependencies": {
"codingbuddy": "^5.6.1"
},
"peerDependenciesMeta": {
"codingbuddy": {
"optional": true
}
},
"devDependencies": {
"@eslint/js": "9.39.2",
"@types/node": "25.0.9",
"@typescript-eslint/eslint-plugin": "8.53.0",
"@typescript-eslint/parser": "8.53.0",
"@vitest/coverage-v8": "4.0.17",
"codingbuddy-rules": "workspace:*",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"globals": "17.0.0",
"madge": "8.0.0",
"prettier": "3.7.4",
"ts-node": "10.9.2",
"typescript": "5.9.3",
"vitest": "4.0.17"
}
}