-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.66 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "cli-repo-to-prompt",
"version": "1.1.2",
"description": "Gather project context for LLMs - intelligently scan repositories and format for AI consumption",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"cli-repo-to-prompt": "dist/cli.js",
"repo-to-prompt": "dist/cli.js",
"context": "dist/cli.js",
"llmcontext": "dist/cli.js",
"repocp": "dist/cli.js",
"repo2prompt": "dist/cli.js",
"repo2cp": "dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm build",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major"
},
"engines": {
"node": ">=18"
},
"keywords": [
"llm",
"ai",
"context",
"repository",
"code",
"prompt",
"gpt",
"claude",
"chatgpt",
"cli"
],
"author": "Yigit Konur",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/yigitkonur/cli-repo-to-prompt.git"
},
"bugs": {
"url": "https://github.com/yigitkonur/cli-repo-to-prompt/issues"
},
"homepage": "https://github.com/yigitkonur/cli-repo-to-prompt#readme",
"dependencies": {
"@inquirer/prompts": "^8.1.0",
"chalk": "^5.6.2",
"clipboardy": "^5.0.2",
"commander": "^14.0.2",
"globby": "^16.0.0",
"ignore": "^7.0.5",
"minimatch": "^10.1.1",
"ora": "^9.0.0",
"simple-git": "^3.30.0",
"zod": "^4.2.1"
},
"devDependencies": {
"@types/node": "^25.0.3",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
}
}