codmir 0.2.0 → 0.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/README.md +4 -4
- package/package.json +11 -3
package/README.md
CHANGED
|
@@ -27,21 +27,21 @@ npm install codmir
|
|
|
27
27
|
or with pnpm:
|
|
28
28
|
|
|
29
29
|
```bash
|
|
30
|
-
pnpm add codmir
|
|
30
|
+
pnpm add @jobrayan/codmir
|
|
31
31
|
```
|
|
32
32
|
|
|
33
33
|
or with yarn:
|
|
34
34
|
|
|
35
35
|
```bash
|
|
36
|
-
yarn add codmir
|
|
36
|
+
yarn add @jobrayan/codmir
|
|
37
37
|
```
|
|
38
38
|
|
|
39
39
|
### As a CLI (Global)
|
|
40
40
|
|
|
41
41
|
```bash
|
|
42
|
-
npm install -g codmir
|
|
42
|
+
npm install -g @jobrayan/codmir
|
|
43
43
|
# or
|
|
44
|
-
pnpm add -g codmir
|
|
44
|
+
pnpm add -g @jobrayan/codmir
|
|
45
45
|
```
|
|
46
46
|
|
|
47
47
|
Then authenticate and link your project:
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codmir",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "TypeScript SDK for codmir API - the AI that prevents wasted engineering time",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
8
|
"bin": {
|
|
9
|
-
"codmir": "
|
|
9
|
+
"codmir": "dist/cli/index.js"
|
|
10
10
|
},
|
|
11
11
|
"exports": {
|
|
12
12
|
".": {
|
|
@@ -39,15 +39,23 @@
|
|
|
39
39
|
"repository": {
|
|
40
40
|
"type": "git",
|
|
41
41
|
"url": "https://github.com/codmir/codmir.git",
|
|
42
|
-
"directory": "packages/codmir-client"
|
|
42
|
+
"directory": "apps/web/packages/codmir-client"
|
|
43
43
|
},
|
|
44
44
|
"bugs": {
|
|
45
45
|
"url": "https://github.com/codmir/codmir/issues"
|
|
46
46
|
},
|
|
47
47
|
"homepage": "https://codmir.com",
|
|
48
48
|
"devDependencies": {
|
|
49
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
50
|
+
"@semantic-release/commit-analyzer": "^13.0.0",
|
|
51
|
+
"@semantic-release/git": "^10.0.1",
|
|
52
|
+
"@semantic-release/github": "^11.0.0",
|
|
53
|
+
"@semantic-release/npm": "^12.0.1",
|
|
54
|
+
"@semantic-release/release-notes-generator": "^14.0.0",
|
|
49
55
|
"@types/node": "^20.10.0",
|
|
50
56
|
"@types/prompts": "^2.4.9",
|
|
57
|
+
"conventional-changelog-conventionalcommits": "^8.0.0",
|
|
58
|
+
"semantic-release": "^24.0.0",
|
|
51
59
|
"tsup": "^8.0.1",
|
|
52
60
|
"typescript": "^5.8.3"
|
|
53
61
|
},
|