-
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.11 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.11 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": "lunarcode",
"version": "0.2.0",
"description": "AI-powered CLI for your Obsidian vault using local Ollama models",
"author": "LunarCode Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/your-username/lunarcode.git"
},
"bugs": {
"url": "https://github.com/your-username/lunarcode/issues"
},
"homepage": "https://github.com/your-username/lunarcode#readme",
"keywords": [
"ai",
"cli",
"ollama",
"obsidian",
"markdown",
"agent",
"rag"
],
"type": "module",
"bin": {
"lunarcode": "./dist/index.js"
},
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc",
"start": "node dist/index.js"
},
"dependencies": {
"commander": "^12.0.0",
"gray-matter": "^4.0.3",
"ink": "^5.0.1",
"ink-text-input": "^6.0.0",
"ollama": "^0.5.0",
"react": "^18.3.1",
"vectra": "^0.5.0",
"glob": "^11.0.0",
"chalk": "^5.3.0",
"ora": "^8.0.1"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/react": "^18.3.1",
"tsx": "^4.7.0",
"typescript": "^5.4.0"
}
}