-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.46 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.46 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
88
89
90
{
"name": "codemini-cli",
"version": "0.8.3",
"description": "An extremely restrained coding + tasks CLI. Every platform. Every terminal. Minimal by design.",
"keywords": [
"cli",
"ai",
"coding-assistant",
"developer-tools",
"terminal",
"windows",
"powershell"
],
"type": "module",
"homepage": "https://github.com/havingautism/Codemini-CLI#readme",
"bugs": {
"url": "https://github.com/havingautism/Codemini-CLI/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/havingautism/Codemini-CLI.git"
},
"bin": {
"codemini": "bin/coder.js",
"coder": "bin/coder.js"
},
"scripts": {
"start": "node bin/coder.js",
"test": "node --test tests/*.test.js",
"build:web": "npm install --prefix codemini-web && npm run build --prefix codemini-web",
"build:codewiki-web": "npm install --prefix codemini-codewiki-web && npm run build --prefix codemini-codewiki-web",
"prepack": "npm run build:web",
"pack:offline": "npm pack",
"bump:patch": "npm version patch --no-git-tag-version",
"bump:minor": "npm version minor --no-git-tag-version",
"bump:major": "npm version major --no-git-tag-version"
},
"files": [
"bin",
"src",
"codemini-web/server.js",
"codemini-web/lib",
"codemini-web/shared",
"codemini-web/client/src/lib/plan-ui-state.js",
"codemini-web/dist",
"codemini-web/codemini_logo.png",
"codemini-codewiki-web",
"souls",
"templates",
"README.md",
"OPERATIONS.md",
"deployment.md"
],
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@ast-grep/napi": "^0.43.0",
"@cursorless/tree-sitter-wasms": "^0.8.1",
"@vscode/ripgrep": "^1.18.0",
"cheerio": "^1.1.2",
"cli-truncate": "^6.0.0",
"execa": "^9.6.1",
"fast-glob": "^3.3.3",
"ink": "^7.0.0",
"mammoth": "^1.12.0",
"pdf-parse": "1.1.1",
"react": "^19.2.5",
"sharp": "^0.35.3",
"strip-ansi": "^7.2.0",
"web-tree-sitter": "^0.26.8",
"zod": "^4.4.3"
},
"license": "MIT",
"optionalDependencies": {
"@ast-grep/lang-bash": "^0.0.8",
"@ast-grep/lang-c": "^0.0.6",
"@ast-grep/lang-cpp": "^0.0.6",
"@ast-grep/lang-csharp": "^0.0.6",
"@ast-grep/lang-go": "^0.0.6",
"@ast-grep/lang-java": "^0.0.7",
"@ast-grep/lang-php": "^0.0.7",
"@ast-grep/lang-python": "^0.0.6",
"@ast-grep/lang-ruby": "^0.0.7",
"@ast-grep/lang-rust": "^0.0.7"
}
}