repomind 0.1.0 → 0.1.1
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 +15 -8
- package/dist/index.mjs +0 -39826
package/package.json
CHANGED
|
@@ -1,18 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "repomind",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "AI-powered git commit messages and repository insights",
|
|
5
|
-
"keywords": [
|
|
5
|
+
"keywords": [
|
|
6
|
+
"git",
|
|
7
|
+
"ai",
|
|
8
|
+
"commit",
|
|
9
|
+
"cli"
|
|
10
|
+
],
|
|
6
11
|
"homepage": "https://repomind.dev",
|
|
7
12
|
"repository": {
|
|
8
13
|
"type": "git",
|
|
9
|
-
"url": "https://github.com/repomind/repomind"
|
|
14
|
+
"url": "git+https://github.com/repomind/repomind.git"
|
|
10
15
|
},
|
|
11
16
|
"license": "MIT",
|
|
12
17
|
"bin": {
|
|
13
|
-
"repomind": "
|
|
18
|
+
"repomind": "dist/index.js"
|
|
14
19
|
},
|
|
15
|
-
"files": [
|
|
20
|
+
"files": [
|
|
21
|
+
"dist"
|
|
22
|
+
],
|
|
16
23
|
"scripts": {
|
|
17
24
|
"build": "esbuild src/index.ts --bundle --platform=node --target=node18 --format=esm --outfile=dist/index.js --external:react-devtools-core --banner:js='#!/usr/bin/env node'",
|
|
18
25
|
"dev": "bun --env-file=.env.local run src/index.ts",
|
|
@@ -20,14 +27,14 @@
|
|
|
20
27
|
"typecheck": "tsc --noEmit"
|
|
21
28
|
},
|
|
22
29
|
"dependencies": {
|
|
23
|
-
"@repomind/config": "workspace:*",
|
|
24
|
-
"@repomind/git": "workspace:*",
|
|
25
|
-
"@repomind/types": "workspace:*",
|
|
26
30
|
"ink": "^6.8.0",
|
|
27
31
|
"ink-spinner": "^5.0.0",
|
|
28
32
|
"react": "^19.2.4"
|
|
29
33
|
},
|
|
30
34
|
"devDependencies": {
|
|
35
|
+
"@repomind/config": "workspace:*",
|
|
36
|
+
"@repomind/git": "workspace:*",
|
|
37
|
+
"@repomind/types": "workspace:*",
|
|
31
38
|
"@types/react": "^19.2.14",
|
|
32
39
|
"esbuild": "^0.25.0",
|
|
33
40
|
"typescript": "^5.7.0"
|