@comradery64/cc-mirror 2.3.0

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.
package/package.json ADDED
@@ -0,0 +1,79 @@
1
+ {
2
+ "name": "@comradery64/cc-mirror",
3
+ "version": "2.3.0",
4
+ "type": "module",
5
+ "description": "Provider-native coding variants with custom providers, tweakcc theming, and battle-tested defaults",
6
+ "author": "Numman Ali",
7
+ "license": "MIT",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/Comradery64/cc-mirror.git"
11
+ },
12
+ "homepage": "https://github.com/Comradery64/cc-mirror#readme",
13
+ "bugs": {
14
+ "url": "https://github.com/Comradery64/cc-mirror/issues"
15
+ },
16
+ "keywords": [
17
+ "claude",
18
+ "claude-code",
19
+ "anthropic",
20
+ "ai",
21
+ "cli",
22
+ "minimax",
23
+ "openrouter",
24
+ "ccrouter",
25
+ "claude-code-router",
26
+ "zai",
27
+ "glm",
28
+ "llm"
29
+ ],
30
+ "bin": {
31
+ "cc-mirror": "dist/cc-mirror.mjs"
32
+ },
33
+ "files": [
34
+ "dist"
35
+ ],
36
+ "publishConfig": {
37
+ "access": "public"
38
+ },
39
+ "scripts": {
40
+ "dev": "tsx src/cli/index.ts",
41
+ "tui": "tsx src/cli/index.ts --tui",
42
+ "bundle": "tsx scripts/bundle.ts",
43
+ "prepack": "tsx scripts/bundle.ts",
44
+ "render:tui-svg": "node --import tsx scripts/render-tui-svg.ts",
45
+ "test": "node --import tsx scripts/run-tests.ts",
46
+ "test:watch": "node --import tsx scripts/run-tests.ts --watch",
47
+ "test:coverage": "c8 npm test",
48
+ "typecheck": "tsc --noEmit",
49
+ "lint": "eslint src test scripts",
50
+ "lint:fix": "eslint --fix src test scripts",
51
+ "format": "prettier --write \"**/*.{ts,tsx,json,md}\"",
52
+ "format:check": "prettier --check \"**/*.{ts,tsx,json,md}\"",
53
+ "check": "npm run typecheck && npm run lint && npm run test:coverage && npm run bundle",
54
+ "prepare": "lefthook install || true"
55
+ },
56
+ "dependencies": {
57
+ "ink": "^6.6.0",
58
+ "ink-select-input": "^6.2.0",
59
+ "ink-text-input": "^6.0.0",
60
+ "react": "^19.2.3"
61
+ },
62
+ "devDependencies": {
63
+ "@eslint/js": "^9.28.0",
64
+ "@types/node": "^25.0.3",
65
+ "@types/react": "^19.2.7",
66
+ "c8": "^10.1.3",
67
+ "esbuild": "^0.27.2",
68
+ "eslint": "^9.39.2",
69
+ "eslint-config-prettier": "^10.1.8",
70
+ "eslint-plugin-react": "^7.37.5",
71
+ "eslint-plugin-react-hooks": "^7.0.1",
72
+ "ink-testing-library": "^4.0.0",
73
+ "lefthook": "^2.0.13",
74
+ "prettier": "^3.7.4",
75
+ "tsx": "^4.21.0",
76
+ "typescript": "^5.9.3",
77
+ "typescript-eslint": "^8.51.0"
78
+ }
79
+ }