-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.69 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.69 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
{
"name": "numidium-local",
"version": "0.1.0",
"description": "Numidium-Local - Your Local AI Development Agent powered by Ollama",
"main": "dist/index.js",
"type": "module",
"bin": {
"numidium-local": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"clean": "rm -rf dist",
"ollama:start": "tsx scripts/ollama-manager.ts start",
"ollama:stop": "tsx scripts/ollama-manager.ts stop",
"ollama:restart": "tsx scripts/ollama-manager.ts restart",
"ollama:status": "tsx scripts/ollama-manager.ts status",
"ollama:test": "tsx scripts/ollama-manager.ts test",
"ollama:models": "tsx scripts/ollama-manager.ts models",
"ollama:pull": "tsx scripts/ollama-manager.ts pull"
},
"keywords": [
"ai",
"cli",
"ollama",
"local",
"development",
"agent",
"numidium-local",
"coding",
"assistant"
],
"author": "Ibzie",
"license": "MIT",
"dependencies": {
"commander": "^12.0.0",
"chalk": "^5.3.0",
"ora": "^8.0.1",
"inquirer": "^10.0.0",
"ink": "^6.1.1",
"react": "^19.1.0",
"string-width": "^7.1.0",
"strip-ansi": "^7.1.0",
"date-fns": "^3.0.0"
},
"devDependencies": {
"@types/node": "^20.11.24",
"@types/react": "^19.1.8",
"typescript": "^5.3.3",
"tsx": "^4.20.3",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Ibzie/Numidium-Local"
},
"homepage": "https://github.com/Ibzie/Numidium-Local#readme",
"bugs": {
"url": "https://github.com/Ibzie/Numidium-Local/issues"
}
}