-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.06 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.06 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
{
"name": "code-ollama",
"version": "0.27.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 docs",
"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",
"@shikijs/cli": "4.2.0",
"cac": "7.0.0",
"ink": "7.0.5",
"marked": "15.0.12",
"marked-terminal": "7.3.0",
"ollama": "0.6.3",
"react": "19.2.7",
"uuid": "14.0.0"
},
"devDependencies": {
"@commitlint/cli": "21.0.2",
"@commitlint/config-conventional": "21.0.2",
"@eslint/js": "10.0.1",
"@types/node": "25.9.1",
"@types/react": "19.2.16",
"@vitest/coverage-v8": "4.1.8",
"eslint": "10.4.1",
"eslint-plugin-prettier": "5.5.6",
"eslint-plugin-simple-import-sort": "13.0.0",
"globals": "17.6.0",
"husky": "9.1.7",
"ink-testing-library": "4.0.0",
"lint-staged": "17.0.7",
"prettier": "3.8.3",
"publint": "0.3.21",
"tsx": "4.22.4",
"typescript": "6.0.3",
"typescript-eslint": "8.60.1",
"vite": "8.0.16",
"vitest": "4.1.8"
},
"files": [
"dist/"
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/remarkablemark"
}
],
"license": "MIT"
}