-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.08 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.08 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
{
"name": "lumiko",
"version": "1.0.0",
"description": "Auto-generate documentation from your codebase using Claude",
"type": "module",
"main": "dist/index.js",
"bin": {
"lumiko": "./dist/index.js"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest",
"lint": "eslint src/",
"prepublishOnly": "npm run build"
},
"keywords": [
"documentation",
"generator",
"ai",
"claude",
"developer-tools"
],
"author": "Mirako Studios",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mirako-studio/lumiko"
},
"homepage": "https://mirako.computer",
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"chalk": "^5.4.1",
"commander": "^13.1.0",
"glob": "^11.0.1",
"js-yaml": "^4.1.0",
"ora": "^8.2.0",
"prompts": "^2.4.2"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.0.0",
"@types/prompts": "^2.4.9",
"tsup": "^8.4.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}