-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
57 lines (57 loc) · 1.56 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
53
54
55
56
57
{
"name": "kindle-ai-export",
"private": true,
"version": "0.1.0",
"description": "Export any Kindle book you own as text, PDF, EPUB, or as a custom, AI-narrated audiobook.",
"author": "Travis Fischer <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/transitive-bullshit/kindle-ai-export.git"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
},
"type": "module",
"scripts": {
"test": "run-s test:*",
"test:format": "prettier --check \"**/*.{js,ts,tsx}\"",
"test:lint": "eslint .",
"test:typecheck": "tsc --noEmit",
"preinstall": "npx only-allow pnpm"
},
"dependencies": {
"@inquirer/prompts": "^7.0.0",
"dotenv": "^16.4.5",
"fluent-ffmpeg": "^2.1.3",
"globby": "^14.0.2",
"hash-object": "^5.0.1",
"hh-mm-ss": "^1.2.0",
"kindle-api-ky": "^1.0.1",
"ky": "^1.7.2",
"node-id3": "^0.2.6",
"openai-fetch": "^3.3.1",
"p-map": "^7.0.2",
"pdfkit": "^0.15.0",
"playwright": "^1.48.0",
"playwright-core": "^1.48.0",
"unrealspeech-api": "^1.0.2"
},
"devDependencies": {
"@fisch0920/eslint-config": "^1.4.0",
"@total-typescript/ts-reset": "^0.6.1",
"@types/fluent-ffmpeg": "^2.1.26",
"@types/hh-mm-ss": "^1.2.3",
"@types/node": "^22.7.5",
"@types/pdfkit": "^0.13.5",
"del-cli": "^6.0.0",
"delay": "^6.0.0",
"eslint": "^8.57.0",
"npm-run-all2": "^6.2.2",
"only-allow": "^1.2.1",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"vitest": "2.1.2"
}
}