git-reverse-cli 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/LICENSE +21 -0
- package/README.md +123 -0
- package/dist/cli.js +2202 -0
- package/package.json +62 -0
package/package.json
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "git-reverse-cli",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Reverse-engineer any GitHub repository into a structured recreation prompt using LLMs",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"github",
|
|
7
|
+
"reverse-engineer",
|
|
8
|
+
"llm",
|
|
9
|
+
"cli",
|
|
10
|
+
"openrouter",
|
|
11
|
+
"prompt-engineering"
|
|
12
|
+
],
|
|
13
|
+
"author": "git-reverse contributors",
|
|
14
|
+
"license": "MIT",
|
|
15
|
+
"type": "module",
|
|
16
|
+
"bin": {
|
|
17
|
+
"git-reverse": "dist/cli.js"
|
|
18
|
+
},
|
|
19
|
+
"main": "./dist/cli.js",
|
|
20
|
+
"files": [
|
|
21
|
+
"dist",
|
|
22
|
+
"README.md"
|
|
23
|
+
],
|
|
24
|
+
"scripts": {
|
|
25
|
+
"dev": "tsx watch src/cli.tsx",
|
|
26
|
+
"build": "tsup",
|
|
27
|
+
"start": "tsx src/cli.tsx",
|
|
28
|
+
"typecheck": "tsc --noEmit",
|
|
29
|
+
"test": "vitest run",
|
|
30
|
+
"test:watch": "vitest",
|
|
31
|
+
"lint": "eslint src --ext .ts,.tsx",
|
|
32
|
+
"prepublishOnly": "npm run build && npm run typecheck"
|
|
33
|
+
},
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"@octokit/rest": "^21.0.2",
|
|
36
|
+
"axios": "^1.7.9",
|
|
37
|
+
"boxen": "^8.0.1",
|
|
38
|
+
"chalk": "^5.3.0",
|
|
39
|
+
"conf": "^13.0.1",
|
|
40
|
+
"figures": "^6.1.0",
|
|
41
|
+
"ink": "^5.0.1",
|
|
42
|
+
"ink-select-input": "^6.0.0",
|
|
43
|
+
"ink-spinner": "^5.0.0",
|
|
44
|
+
"ink-text-input": "^6.0.0",
|
|
45
|
+
"marked": "^14.0.0",
|
|
46
|
+
"nanoid": "^5.0.9",
|
|
47
|
+
"react": "^18.3.1",
|
|
48
|
+
"terminal-link": "^3.0.0",
|
|
49
|
+
"wrap-ansi": "^9.0.0"
|
|
50
|
+
},
|
|
51
|
+
"devDependencies": {
|
|
52
|
+
"@types/node": "^22.10.2",
|
|
53
|
+
"@types/react": "^18.3.14",
|
|
54
|
+
"tsx": "^4.19.2",
|
|
55
|
+
"tsup": "^8.3.5",
|
|
56
|
+
"typescript": "^5.7.2",
|
|
57
|
+
"vitest": "^2.1.8"
|
|
58
|
+
},
|
|
59
|
+
"engines": {
|
|
60
|
+
"node": ">=18.0.0"
|
|
61
|
+
}
|
|
62
|
+
}
|