codemate-ai 1.0.4 → 1.0.6

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/cli.js +20592 -3434
  2. package/package.json +28 -19
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codemate-ai",
3
- "version": "1.0.4",
3
+ "version": "1.0.6",
4
4
  "type": "module",
5
5
  "description": "Enterprise-grade AI coding assistant CLI",
6
6
  "main": "dist/cli.js",
@@ -23,24 +23,6 @@
23
23
  "url": "https://github.com/your-org/aicli/issues"
24
24
  },
25
25
  "homepage": "https://github.com/your-org/aicli#readme",
26
- "scripts": {
27
- "dev": "tsx src/cli.ts",
28
- "build": "tsup",
29
- "test": "vitest run",
30
- "test:watch": "vitest",
31
- "test:ui": "vitest --ui",
32
- "test:install": "./scripts/test-install.sh",
33
- "typecheck": "tsc --noEmit",
34
- "format": "biome format --write .",
35
- "format:check": "biome format .",
36
- "lint": "biome lint .",
37
- "lint:fix": "biome lint --write .",
38
- "ci": "npm run typecheck && npm run format:check && npm run test",
39
- "ci:quick": "npm run typecheck && npm run format:check",
40
- "prepublishOnly": "npm run ci:quick && npm run build",
41
- "release": "./scripts/release.sh",
42
- "test:local": "./scripts/test-local.sh"
43
- },
44
26
  "keywords": [
45
27
  "ai",
46
28
  "cli",
@@ -56,15 +38,23 @@
56
38
  "@babel/traverse": "^7.29.0",
57
39
  "@babel/types": "^7.29.0",
58
40
  "ai": "^4.0.0",
41
+ "clipboardy": "^5.1.0",
59
42
  "commander": "^14.0.3",
43
+ "defu": "^6.1.4",
44
+ "degit": "^2.8.4",
60
45
  "dotenv": "^16.4.5",
61
46
  "express": "^5.2.1",
47
+ "gray-matter": "^4.0.3",
62
48
  "ink": "^5.2.1",
63
49
  "ink-spinner": "^5.0.0",
64
50
  "ink-text-input": "^6.0.0",
51
+ "marked": "^17.0.1",
52
+ "nanoid": "^5.1.7",
65
53
  "openai": "^6.25.0",
54
+ "pathe": "^2.0.3",
66
55
  "react": "^18.3.1",
67
56
  "tsup": "^8.5.1",
57
+ "uuid": "^13.0.0",
68
58
  "ws": "^8.19.0",
69
59
  "zod": "^3.24.1",
70
60
  "zod-to-json-schema": "^3.25.1"
@@ -77,10 +67,29 @@
77
67
  "@types/express": "^5.0.6",
78
68
  "@types/node": "^22.10.2",
79
69
  "@types/react": "^19.2.10",
70
+ "@types/uuid": "^11.0.0",
80
71
  "@types/ws": "^8.18.1",
81
72
  "ink-testing-library": "^4.0.0",
82
73
  "tsx": "^4.19.2",
83
74
  "typescript": "^5.7.2",
84
75
  "vitest": "^3.0.4"
76
+ },
77
+ "scripts": {
78
+ "dev": "tsx src/cli.ts",
79
+ "build": "tsup",
80
+ "test": "vitest run",
81
+ "test:watch": "vitest",
82
+ "test:ui": "vitest --ui",
83
+ "test:install": "./scripts/test-install.sh",
84
+ "test:platform": "tsx scripts/test-platform.ts",
85
+ "typecheck": "tsc --noEmit -p tsconfig.typecheck.json",
86
+ "format": "biome format --write .",
87
+ "format:check": "biome format .",
88
+ "lint": "biome lint .",
89
+ "lint:fix": "biome lint --write .",
90
+ "ci": "npm run typecheck && npm run format:check && npm run test",
91
+ "ci:quick": "npm run typecheck && npm run format:check",
92
+ "release": "./scripts/release.sh",
93
+ "test:local": "./scripts/test-local.sh"
85
94
  }
86
95
  }