-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.02 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
{
"name": "dekard",
"version": "1.2.1",
"description": "A simple file concatenation tool to provide project context for AI.",
"main": "dist/index.js",
"files": [
"dist",
"README.md",
"LICENSE"
],
"bin": {
"dekard": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "jest"
},
"keywords": [
"file",
"concatenation",
"typescript",
"cli",
"watch"
],
"repository": {
"type": "git",
"url": "https://github.com/wayleem/dekard.git"
},
"homepage": "https://github.com/wayleem/dekard#readme",
"author": "wayleem",
"license": "ISC",
"dependencies": {
"chokidar": "^3.6.0",
"fs-extra": "^11.2.0",
"glob": "^11.0.0",
"minimatch": "^5.1.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/chokidar": "^2.1.3",
"@types/fs-extra": "^11.0.4",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.12",
"@types/minimatch": "^5.1.2",
"@types/node": "^22.1.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}