forked from langchain-ai/openwiki
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.16 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
80
81
{
"name": "openwiki",
"version": "0.1.2",
"description": "A CLI that uses a DeepAgents documentation agent to generate and maintain an OpenWiki for a codebase.",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20"
},
"bin": {
"openwiki": "./dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"ai",
"agents",
"documentation",
"wiki",
"deepagents",
"langchain",
"cli"
],
"scripts": {
"openwiki": "node dist/cli.js",
"build": "tsc -p tsconfig.json",
"clean": "node -e \"require('fs').rmSync('dist', { recursive: true, force: true })\"",
"coverage": "vitest run --coverage",
"dev": "tsx src/cli.tsx",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"prebuild": "pnpm run clean",
"prepack": "pnpm run build",
"start": "node dist/cli.js",
"test": "vitest run",
"typecheck": "tsc --noEmit -p tsconfig.json"
},
"dependencies": {
"@aws-sdk/client-bedrock-runtime": "^3.1080.0",
"@langchain/anthropic": "^1.5.1",
"@langchain/aws": "^1.4.2",
"@langchain/core": "^1.2.1",
"@langchain/langgraph-checkpoint-sqlite": "^1.0.3",
"@langchain/openai": "^1.5.5",
"@langchain/openrouter": "^0.4.3",
"@langchain/protocol": "^0.0.18",
"@langchain/tavily": "1.2.0",
"cron-parser": "5.6.1",
"cronstrue": "3.24.0",
"deepagents": "^1.10.8",
"ink": "^5.1.0",
"langchain": "^1.5.3",
"marked": "^18.0.5",
"react": "^18.3.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^22.10.2",
"@types/react": "^18.3.17",
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^10.5.0",
"prettier": "^3.8.4",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.62.0",
"vitest": "^4.1.10"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"esbuild"
]
},
"packageManager": "pnpm@10.33.2+sha512.a90faf6feeab71ad6c6e57f94e0fe1a12f5dcc22cd754db40ae9593eb6a3e0b6b12e3540218bb37ae083404b1f2ce6db2a4121e979829b4aff94b99f49da1cf8"
}