-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.8 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
{
"name": "wiki-forge",
"version": "0.6.1",
"description": "Keep your docs in sync with your code. LLM-powered documentation compiler.",
"type": "module",
"bin": {
"wiki-forge": "dist/cli.js"
},
"exports": {
".": "./dist/index.js"
},
"files": [
"dist",
"commands",
"brain-templates",
"action.yml",
"README.md"
],
"scripts": {
"build": "bun build src/cli.ts --outfile dist/cli.js --target node && bun build src/index.ts --outfile dist/index.js --target node && bun build src/action.ts --outfile dist/action.js --target node",
"dev": "bun run src/cli.ts",
"check": "biome check src/",
"format": "biome check --fix src/",
"lint": "tsc --noEmit && biome check src/"
},
"keywords": [
"documentation",
"llm",
"wiki",
"github-action",
"gemini",
"claude",
"openai",
"ollama",
"code-to-docs",
"ai",
"developer-tools",
"knowledge-base",
"documentation-generator",
"code-documentation",
"auto-docs",
"docs-as-code"
],
"license": "MIT",
"homepage": "https://github.com/thevrus/wiki-forge",
"repository": {
"type": "git",
"url": "git+https://github.com/thevrus/wiki-forge.git"
},
"bugs": {
"url": "https://github.com/thevrus/wiki-forge/issues"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.82.0",
"@clack/prompts": "^1.2.0",
"@google/genai": "^1.48.0",
"@inkjs/ui": "^2.0.0",
"citty": "^0.2.2",
"fast-glob": "^3.3.3",
"gray-matter": "^4.0.3",
"ink": "^6.8.0",
"octokit": "^5.0.5",
"openai": "^6.33.0",
"ora": "^9.3.0",
"picocolors": "^1.1.1",
"react": "^19.2.4",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@types/node": "^25.5.2",
"@types/react": "^19.2.14",
"typescript": "^6.0.2"
}
}