codmir 0.3.2 → 0.3.3
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/LICENSE +55 -0
- package/README.md +219 -14
- package/dist/analyze-LULBI4ZC.mjs +7 -0
- package/dist/chunk-ASGAT3Z5.mjs +756 -0
- package/dist/chunk-EBO3CZXG.mjs +15 -0
- package/dist/cli/index.js +1897 -117
- package/dist/cli/index.mjs +1144 -139
- package/dist/index.mjs +2 -1
- package/package.json +30 -11
- /package/dist/{chunk-7HVQNURM.mjs → chunk-LXEEBTWT.mjs} +0 -0
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codmir",
|
|
3
|
-
"version": "0.3.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.3.3",
|
|
4
|
+
"description": "Official codmir SDK - CLI and SDK for AI-powered development: codebase analysis, task replication, usage tracking, and intelligent automation",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -25,26 +25,40 @@
|
|
|
25
25
|
"build": "tsup src/index.ts src/cli/index.ts --format cjs,esm --dts --clean",
|
|
26
26
|
"dev": "tsup src/index.ts src/cli/index.ts --format cjs,esm --dts --watch",
|
|
27
27
|
"prepublishOnly": "pnpm build",
|
|
28
|
-
"test": "jest"
|
|
28
|
+
"test": "jest",
|
|
29
|
+
"test:login": "node scripts/test/login.mjs",
|
|
30
|
+
"test:link": "node scripts/test/link.mjs",
|
|
31
|
+
"test:projects": "node scripts/test/projects.mjs",
|
|
32
|
+
"test:whoami": "node scripts/test/whoami.mjs",
|
|
33
|
+
"test:logout": "node scripts/test/logout.mjs",
|
|
34
|
+
"test:all": "npm run test:logout && npm run test:login && npm run test:whoami && npm run test:projects"
|
|
29
35
|
},
|
|
30
36
|
"keywords": [
|
|
31
37
|
"codmir",
|
|
32
|
-
"api-client",
|
|
33
|
-
"typescript",
|
|
34
38
|
"sdk",
|
|
35
|
-
"
|
|
39
|
+
"cli",
|
|
40
|
+
"ai",
|
|
41
|
+
"codebase-analysis",
|
|
42
|
+
"knowledge-base",
|
|
43
|
+
"task-replication",
|
|
44
|
+
"usage-tracking",
|
|
45
|
+
"observability",
|
|
36
46
|
"project-management",
|
|
37
|
-
"
|
|
47
|
+
"tickets",
|
|
48
|
+
"tasks",
|
|
49
|
+
"automation",
|
|
50
|
+
"multi-agent",
|
|
51
|
+
"ai-assistant"
|
|
38
52
|
],
|
|
39
53
|
"author": "codmir",
|
|
40
54
|
"license": "MIT",
|
|
41
55
|
"repository": {
|
|
42
56
|
"type": "git",
|
|
43
|
-
"url": "https://github.com/
|
|
44
|
-
"directory": "packages/codmir-
|
|
57
|
+
"url": "https://github.com/codmir/codmir.git",
|
|
58
|
+
"directory": "apps/web/packages/codmir-client"
|
|
45
59
|
},
|
|
46
60
|
"bugs": {
|
|
47
|
-
"url": "https://github.com/
|
|
61
|
+
"url": "https://github.com/codmir/codmir/issues"
|
|
48
62
|
},
|
|
49
63
|
"homepage": "https://codmir.com",
|
|
50
64
|
"runkit": {
|
|
@@ -66,9 +80,14 @@
|
|
|
66
80
|
},
|
|
67
81
|
"dependencies": {
|
|
68
82
|
"chalk": "^5.3.0",
|
|
83
|
+
"clipboardy": "^5.0.1",
|
|
69
84
|
"commander": "^12.0.0",
|
|
85
|
+
"form-data": "^4.0.5",
|
|
86
|
+
"glob": "^10.3.10",
|
|
70
87
|
"open": "^10.0.0",
|
|
71
|
-
"
|
|
88
|
+
"ora": "^9.0.0",
|
|
89
|
+
"prompts": "^2.4.2",
|
|
90
|
+
"ws": "^8.18.3"
|
|
72
91
|
},
|
|
73
92
|
"engines": {
|
|
74
93
|
"node": ">=18.0.0"
|
|
File without changes
|