-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
48 lines (48 loc) · 1.08 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
{
"name": "ai-digest",
"version": "1.0.7",
"description": "CLI tool to aggregate files into a single Markdown file",
"main": "dist/index.js",
"bin": {
"ai-digest": "./dist/index.js"
},
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "tsc",
"start": "ts-node src/index.ts",
"prepublishOnly": "npm run build",
"test": "jest --config jest.config.js"
},
"keywords": [
"cli",
"aggregate",
"markdown"
],
"author": "Stanislav Khromov",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20",
"jest": "^29.7.0",
"ts-jest": "^29.2.2",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
},
"dependencies": {
"commander": "^12.1.0",
"glob": "^11.0.0",
"ignore": "^5.3.1",
"isbinaryfile": "^5.0.2",
"js-tiktoken": "^1.0.12"
},
"homepage": "https://github.com/khromov/ai-digest#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/khromov/ai-digest.git"
},
"bugs": {
"url": "https://github.com/khromov/ai-digest/issues"
}
}