-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.19 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
{
"name": "contextpack",
"version": "0.1.0",
"description": "One command — package your entire codebase as AI-ready context. Intelligent context selection for ChatGPT, Claude, Cursor, and other AI tools.",
"keywords": ["ai", "context", "codebase", "llm", "chatgpt", "claude", "repopack", "token", "prompt"],
"homepage": "https://github.com/FMATheNomad/contextpack",
"bugs": "https://github.com/FMATheNomad/contextpack/issues",
"license": "MIT",
"author": "FMA Software Labs",
"bin": {
"contextpack": "./dist/cli.js"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"test": "jest --passWithNoTests",
"prepublish": "npm run build",
"watch": "tsc --watch",
"clean": "rm -rf dist"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^12.0.0",
"fs-extra": "^11.2.0",
"glob": "^10.3.10",
"ignore": "^5.3.1",
"ora": "^5.4.1"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.19",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.2"
},
"engines": {
"node": ">=18.0.0"
}
}