-
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) · 1.9 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.9 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": "litewiki",
"version": "1.0.1",
"description": "A local-first CLI that generates and archives wiki-style reports for a codebase.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"wiki": "dist/index.js"
},
"files": [
"dist",
"docs",
"README.md",
"README_ZH.md",
"README_ES.md",
"ROADMAP.md",
"AGENTS.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/CoderSerio/light-wiki.git"
},
"homepage": "https://github.com/CoderSerio/light-wiki#readme",
"bugs": {
"url": "https://github.com/CoderSerio/light-wiki/issues"
},
"scripts": {
"test": "pnpm run test:compile && node --test build/ts-tests/test/**/*.test.js",
"test:compile": "node -e \"require('fs').rmSync('build/ts-tests',{recursive:true,force:true})\" && tsc -p tsconfig.test.json",
"dev": "tsup --watch",
"build": "tsup",
"lint": "biome check .",
"format": "biome format --write .",
"check": "biome check . && pnpm -s build",
"prepublishOnly": "pnpm -s test && pnpm -s build",
"prepare": "husky"
},
"keywords": [
"cli",
"wiki",
"documentation",
"docs",
"codebase",
"report",
"local-first",
"agent",
"llm",
"openai",
"mermaid",
"typescript"
],
"author": "Carbon<carbon1024@foxmail.com>",
"license": "ISC",
"packageManager": "pnpm@10.26.0",
"type": "module",
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.29.8",
"@types/node": "^25.0.3",
"husky": "^9.0.11",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"dependencies": {
"@ai-sdk/openai": "^3.0.2",
"@clack/prompts": "^0.11.0",
"ai": "^6.0.6",
"cac": "^6.7.14",
"conf": "^15.0.2",
"dotenv": "^17.2.3",
"execa": "^9.6.1",
"zod": "^4.3.4"
}
}