-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.95 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.95 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
{
"name": "devdocs-forge-agent",
"version": "0.1.1",
"description": "AI documentation agent that turns tutorial transcripts, demos, and recordings into developer docs",
"type": "module",
"bin": {
"devdocs-forge-agent": "./dist/cli/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/cli/index.ts",
"devdocs-forge-agent": "tsx src/cli/index.ts",
"doctor": "tsx src/cli/index.ts doctor",
"init": "tsx src/cli/index.ts init",
"examples": "tsx src/cli/index.ts examples",
"generate": "tsx src/cli/index.ts generate",
"batch": "tsx src/cli/index.ts batch",
"providers": "tsx src/cli/index.ts providers",
"verify": "tsx src/cli/index.ts verify",
"demo": "node scripts/demo.mjs",
"test": "vitest run",
"lint": "eslint .",
"format": "prettier --write .",
"website:start": "cd website && node ./node_modules/@docusaurus/core/bin/docusaurus.mjs start",
"website:build": "cd website && node ./node_modules/@docusaurus/core/bin/docusaurus.mjs build"
},
"dependencies": {
"clipboardy": "^5.3.1",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"js-yaml": "^4.1.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.14.0",
"eslint": "^9.5.0",
"prettier": "^3.3.2",
"tsx": "^4.15.7",
"typescript": "^5.5.2",
"vitest": "^1.6.0"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"documentation",
"ai",
"markdown",
"docusaurus",
"gitbook",
"openai",
"anthropic",
"gemini",
"developer-tools",
"cli",
"transcript",
"tutorial"
],
"author": "devdocs-forge-agent contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/AnkitParekh007/devdocs-forge-agent.git"
},
"homepage": "https://ankitparekh007.github.io/devdocs-forge-agent/",
"bugs": {
"url": "https://github.com/AnkitParekh007/devdocs-forge-agent/issues"
}
}