-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.33 KB
/
package.json
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
{
"name": "context-dump",
"version": "1.0.2",
"description": "An interactive CLI tool to create AI-friendly context from selected files.",
"module": "index.ts",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "bun build ./index.ts --target node --outdir ./dist --minify --bundle --external path,fs,os"
},
"bin": {
"context-dump": "dist/index.js"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"commander": "^12.1.0",
"inquirer": "^12.3.0"
},
"author": "Awa alwalxed@proton.me",
"license": "MIT",
"homepage": "https://github.com/alwalxed/context-dump",
"repository": {
"type": "git",
"url": "git+https://github.com/alwalxed/context-dump.git"
},
"bugs": {
"url": "https://github.com/alwalxed/context-dump/issues"
},
"keywords": [
"CLI",
"AI context",
"project structure",
"file selection",
"JSON output",
"interactive",
"file processing",
"TypeScript",
"node.js",
"inquirer",
"commander",
"AI tools",
"context generation",
"code analysis",
"developer tools",
"context dump",
"gitignore support",
"file exploration",
"command-line interface",
"file filtering",
"AI data extraction",
"typescript-cli"
]
}