-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.15 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
82
83
84
85
86
87
{
"name": "code-ollama",
"version": "0.53.0",
"description": "Ollama coding agent that runs in your terminal",
"author": "Mark <mark@remarkablemark.org> (https://remarkablemark.org)",
"type": "module",
"bin": {
"code-ollama": "./dist/cli.js",
"collama": "./dist/cli.js"
},
"scripts": {
"build": "vite build",
"start": "tsx src/cli.ts",
"clean": "rm -rf coverage dist",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"lint:package": "publint",
"lint:tsc": "tsc --build",
"prepare": "husky",
"prepublishOnly": "npm run build && npm run lint && npm run lint:tsc && npm run test:ci",
"test": "vitest run",
"test:ci": "CI=true npm test -- --color --coverage",
"test:watch": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ai-action/code-ollama.git"
},
"bugs": {
"url": "https://github.com/ai-action/code-ollama/issues"
},
"keywords": [
"code-ollama",
"collama",
"code",
"ollama",
"tui",
"cli",
"ai"
],
"dependencies": {
"@inkjs/ui": "2.0.0",
"@modelcontextprotocol/sdk": "1.29.0",
"@napi-rs/keyring": "1.3.0",
"@shikijs/cli": "4.3.1",
"cac": "7.0.0",
"ignore": "7.0.6",
"ink": "7.1.1",
"marked": "15.0.12",
"marked-terminal": "7.3.0",
"ollama": "0.6.3",
"react": "19.2.7",
"uuid": "14.0.1"
},
"devDependencies": {
"@commitlint/cli": "21.2.1",
"@commitlint/config-conventional": "21.2.0",
"@eslint/js": "10.0.1",
"@types/node": "26.1.1",
"@types/react": "19.2.17",
"@vitest/coverage-v8": "4.1.10",
"eslint": "10.8.0",
"eslint-plugin-prettier": "5.5.6",
"eslint-plugin-simple-import-sort": "14.0.0",
"globals": "17.7.0",
"husky": "9.1.7",
"ink-testing-library": "4.0.0",
"lint-staged": "17.2.0",
"prettier": "3.9.6",
"publint": "0.3.22",
"tsx": "4.23.1",
"typescript": "6.0.3",
"typescript-eslint": "8.65.0",
"vite": "8.1.5",
"vitest": "4.1.10"
},
"files": [
"dist/"
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/remarkablemark"
}
],
"license": "MIT"
}