-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.01 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
{
"name": "@halxdocs/contextpack",
"version": "1.0.0",
"description": "Bundle your codebase into a single LLM-ready file. Stop copy-pasting files into Claude/ChatGPT.",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"bin": {
"contextpack": "dist/cli.js",
"ctx": "dist/cli.js"
},
"scripts": {
"build": "tsup src/index.ts src/cli.ts --format cjs --dts --clean",
"dev": "tsx src/cli.ts",
"start": "node dist/cli.js"
},
"keywords": [
"llm",
"ai",
"context",
"codebase",
"claude",
"chatgpt",
"openai",
"developer-tools",
"cli",
"typescript"
],
"author": "HalxDocs",
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"chokidar": "^3.6.0",
"clipboardy": "^4.0.0",
"chalk": "^5.3.0",
"ignore": "^5.3.1",
"minimist": "^1.2.8"
},
"devDependencies": {
"@types/minimist": "^1.2.5",
"@types/node": "^20.0.0",
"tsup": "^8.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
}
}