-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 784 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 784 Bytes
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
{
"name": "repowiki",
"version": "1.2.0",
"description": "CLI tool to generate DeepWiki-style repository analysis reports using Claude",
"type": "module",
"bin": {
"repowiki": "./dist/index.mjs"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "vitest run"
},
"license": "MIT",
"author": "zzzhizhi",
"repository": {
"type": "git",
"url": "https://github.com/zzzhizhia/repowiki.git"
},
"homepage": "https://github.com/zzzhizhia/repowiki",
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=20"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsup": "^8.0.0",
"typescript": "^5.4.0",
"vitest": "^2.0.0"
},
"dependencies": {
"chalk": "^5.6.2",
"marked": "^18.0.3"
}
}