git-cvnty 1.0.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/CHANGELOG.md +56 -0
- package/LICENSE +21 -0
- package/README.md +202 -0
- package/dist/cli.js +1296 -0
- package/package.json +58 -0
package/package.json
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "git-cvnty",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "A modern and sleek CLI git management tool",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"bin": {
|
|
8
|
+
"cvnty": "dist/cli.js",
|
|
9
|
+
"git-cvnty": "dist/cli.js"
|
|
10
|
+
},
|
|
11
|
+
"files": [
|
|
12
|
+
"dist",
|
|
13
|
+
"README.md",
|
|
14
|
+
"CHANGELOG.md",
|
|
15
|
+
"LICENSE"
|
|
16
|
+
],
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "https://github.com/BunsDev/git-cvnty"
|
|
20
|
+
},
|
|
21
|
+
"engines": {
|
|
22
|
+
"node": ">=18"
|
|
23
|
+
},
|
|
24
|
+
"keywords": [
|
|
25
|
+
"git",
|
|
26
|
+
"cli",
|
|
27
|
+
"terminal",
|
|
28
|
+
"ink",
|
|
29
|
+
"react",
|
|
30
|
+
"tui"
|
|
31
|
+
],
|
|
32
|
+
"scripts": {
|
|
33
|
+
"build": "node build.js",
|
|
34
|
+
"prepare": "node build.js",
|
|
35
|
+
"start": "npm run build && node dist/cli.js",
|
|
36
|
+
"dev": "node build.js --watch",
|
|
37
|
+
"publish:all": "node scripts/publish-aliases.mjs",
|
|
38
|
+
"test": "node --experimental-vm-modules node_modules/.bin/jest"
|
|
39
|
+
},
|
|
40
|
+
"dependencies": {
|
|
41
|
+
"find-versions": "^5.1.0",
|
|
42
|
+
"ink": "^4.4.1",
|
|
43
|
+
"ink-big-text": "^2.0.0",
|
|
44
|
+
"ink-gradient": "^3.0.0",
|
|
45
|
+
"ink-select-input": "^5.0.0",
|
|
46
|
+
"ink-spinner": "^5.0.0",
|
|
47
|
+
"ink-text-input": "^5.0.1",
|
|
48
|
+
"meow": "^11.0.0",
|
|
49
|
+
"node-fetch": "^3.3.2",
|
|
50
|
+
"react": "^18.2.0",
|
|
51
|
+
"semver": "^7.7.1"
|
|
52
|
+
},
|
|
53
|
+
"devDependencies": {
|
|
54
|
+
"esbuild": "^0.27.4",
|
|
55
|
+
"ink-testing-library": "^3.0.0",
|
|
56
|
+
"jest": "^29.7.0"
|
|
57
|
+
}
|
|
58
|
+
}
|