-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.73 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": "forgedock",
"version": "1.4.0",
"description": "Autonomous dev pipeline for Claude Code. GitHub as institutional memory — every issue, PR, and annotation survives context resets and makes the next agent smarter.",
"bin": {
"forgedock": "bin/forgedock.mjs"
},
"keywords": [
"claude-code",
"ai-agents",
"autonomous-coding",
"github-automation",
"developer-tools",
"ai-pipeline",
"code-review",
"llm",
"knowledge-graph",
"claude",
"anthropic",
"agentic-ai",
"devtools",
"automation"
],
"author": "RapierCraft Studios",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/RapierCraftStudios/ForgeDock.git"
},
"homepage": "https://rapiercraftstudios.github.io/ForgeDock/",
"bugs": {
"url": "https://github.com/RapierCraftStudios/ForgeDock/issues"
},
"files": [
"bin/",
"!bin/tests/",
"commands/",
"docs/",
"!docs/site/.vitepress/",
"examples/",
"packages/protocol/src/",
"scripts/",
"!scripts/refresh-bot-token.sh",
"templates/",
"LICENSE",
"README.md"
],
"scripts": {
"test": "node --test \"bin/tests/**/*.test.mjs\" \"bin/engine/**/*.test.mjs\" \"packages/protocol/test/**/*.test.mjs\"",
"docs:dev": "vitepress dev docs/site",
"docs:build": "vitepress build docs/site",
"docs:preview": "vitepress preview docs/site"
},
"engines": {
"node": ">=18"
},
"optionalDependencies": {
"@anthropic-ai/sdk": ">=0.30.0 <1"
},
"devDependencies": {
"vitepress": "^1.6.3"
},
"peerDependencies": {
"@anthropic-ai/claude-code": ">=2.0.0"
},
"peerDependenciesMeta": {
"@anthropic-ai/claude-code": {
"optional": true
}
}
}