-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.46 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.46 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
{
"name": "@greyhaven/claude-code-config",
"version": "2.1.0",
"description": "Hooks, Skills, and configuration setup for Grey Haven's Claude Code environment",
"main": "lib/index.js",
"bin": {
"claude-config": "./bin/claude-config.js"
},
"scripts": {
"postinstall": "node scripts/postinstall.js",
"test": "python3 -m pytest tests/ -v",
"lint": "eslint bin/ scripts/",
"validate": "node scripts/validate-hooks.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/greyhaven-ai/claude-code-config.git"
},
"keywords": [
"claude",
"claude-code",
"hooks",
"skills",
"configuration",
"setup",
"cli",
"mcp",
"grey-haven",
"ai",
"developer-tools",
"code-quality"
],
"author": "Grey Haven Studio",
"license": "MIT",
"bugs": {
"url": "https://github.com/greyhaven-ai/claude-code-config/issues"
},
"homepage": "https://github.com/greyhaven-ai/claude-code-config#readme",
"engines": {
"node": ">=14.0.0",
"python": ">=3.8.0"
},
"preferGlobal": true,
"files": [
"bin/",
"scripts/",
".claude/hooks/",
".claude/skills/",
".claude/settings.json.template",
"grey-haven-plugins/grey-haven-skills/",
"templates/",
"docs/cli/",
"LICENSE",
"README-npm.md",
"claude-config"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"eslint": "^8.0.0"
}
}