-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.3 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.3 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
48
49
50
51
{
"name": "dkutils-cli",
"version": "0.1.0",
"description": "dkutils interactive CLI and TypeScript utility toolkit for image, PDF, and media workflows.",
"type": "module",
"license": "ISC",
"bin": {
"dkutils": "./dist/bin/dkutils.js"
},
"exports": {
".": {
"types": "./dist/DKUTILS.d.ts",
"import": "./dist/DKUTILS.js",
"default": "./dist/DKUTILS.js"
}
},
"files": ["dist", "README.md"],
"scripts": {
"build": "rslib build && node ./scripts/postbuild.mjs",
"dev": "rslib build --watch",
"lint": "biome check src scripts tests",
"format": "biome format --write src scripts tests",
"test": "pnpm build && node --test tests/**/*.test.js",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@distube/ytdl-core": "^4.16.2",
"@imgly/background-removal-node": "^1.4.5",
"@inquirer/prompts": "^8.3.2",
"cli-progress": "^3.12.0",
"commander": "^14.0.1",
"docx": "^9.5.1",
"fast-glob": "^3.3.3",
"ffmpeg-static": "^5.2.0",
"pdf-lib": "^1.17.1",
"pdf-parse": "^1.1.4",
"pdfkit": "^0.17.2",
"sharp": "^0.33.5",
"xlsx": "^0.18.5",
"youtubei.js": "^17.0.1",
"yt-dlp-static": "^1.0.6"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@rslib/core": "^0.12.2",
"@types/node": "^24.6.0",
"@types/pdfkit": "^0.17.3",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}