cmdr-agent 2.1.1 → 2.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/package.json +69 -0
  2. package/package.json +2 -2
@@ -0,0 +1,69 @@
1
+ {
2
+ "name": "cmdr-agent",
3
+ "version": "2.1.2",
4
+ "description": "Open-source multi-agent coding tool for your terminal. Powered by Ollama.",
5
+ "type": "module",
6
+ "bin": {
7
+ "cmdr": "./dist/bin/cmdr.js"
8
+ },
9
+ "main": "dist/index.js",
10
+ "types": "dist/index.d.ts",
11
+ "scripts": {
12
+ "build": "tsc",
13
+ "postbuild": "cp package.json dist/package.json && chmod +x dist/bin/cmdr.js",
14
+ "dev": "tsc --watch",
15
+ "test": "vitest run",
16
+ "test:watch": "vitest",
17
+ "lint": "tsc --noEmit",
18
+ "start": "node dist/bin/cmdr.js",
19
+ "eval": "npx tsx evals/run-evals.ts",
20
+ "eval:report": "npx tsx evals/report.ts",
21
+ "prepublishOnly": "npm run build"
22
+ },
23
+ "files": [
24
+ "dist",
25
+ "LICENSE",
26
+ "README.md"
27
+ ],
28
+ "engines": {
29
+ "node": ">=20.0.0"
30
+ },
31
+ "homepage": "https://github.com/reyyanxahmed/cmdr#readme",
32
+ "bugs": {
33
+ "url": "https://github.com/reyyanxahmed/cmdr/issues"
34
+ },
35
+ "dependencies": {
36
+ "chalk": "^5.3.0",
37
+ "ink": "^5.2.1",
38
+ "ink-text-input": "^6.0.0",
39
+ "marked": "^14.0.0",
40
+ "marked-terminal": "^7.2.0",
41
+ "ora": "^8.0.0",
42
+ "react": "^18.3.1",
43
+ "smol-toml": "^1.6.1",
44
+ "zod": "^3.23.0"
45
+ },
46
+ "devDependencies": {
47
+ "@types/node": "^22.0.0",
48
+ "@types/react": "^18.3.28",
49
+ "tsx": "^4.21.0",
50
+ "typescript": "^5.6.0",
51
+ "vitest": "^2.1.0"
52
+ },
53
+ "keywords": [
54
+ "ai",
55
+ "agent",
56
+ "coding",
57
+ "ollama",
58
+ "multi-agent",
59
+ "terminal",
60
+ "cli",
61
+ "local-llm"
62
+ ],
63
+ "author": "Reyyan Ahmed",
64
+ "license": "MIT",
65
+ "repository": {
66
+ "type": "git",
67
+ "url": "https://github.com/reyyanxahmed/cmdr"
68
+ }
69
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cmdr-agent",
3
- "version": "2.1.1",
3
+ "version": "2.1.2",
4
4
  "description": "Open-source multi-agent coding tool for your terminal. Powered by Ollama.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -10,7 +10,7 @@
10
10
  "types": "dist/index.d.ts",
11
11
  "scripts": {
12
12
  "build": "tsc",
13
- "postbuild": "chmod +x dist/bin/cmdr.js",
13
+ "postbuild": "cp package.json dist/package.json && chmod +x dist/bin/cmdr.js",
14
14
  "dev": "tsc --watch",
15
15
  "test": "vitest run",
16
16
  "test:watch": "vitest",