-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 958 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 958 Bytes
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
{
"name": "export-codebase",
"version": "2.0.2",
"description": "Aggregates project files into a single text file, respecting .gitignore.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"bin": {
"export-codebase": "./dist/index.js"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "node dist/index.js",
"fulltest": "npm run build && npm run start",
"prepublishOnly": "npm run build"
},
"keywords": [
"cli",
"tool",
"context",
"code-concatenator",
"llm"
],
"author": "Burakhanunver <burakhanunver@gmail.com>",
"license": "GPL-3.0-only",
"dependencies": {
"chalk": "^5.3.0",
"fast-glob": "^3.3.2",
"ignore": "^5.3.1",
"minimist": "^1.2.8"
},
"devDependencies": {
"@types/minimist": "^1.2.5",
"@types/node": "^20.12.2",
"tsup": "^8.0.2",
"typescript": "^5.4.3"
},
"engines": {
"node": ">=18.0.0"
}
}