-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 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
{
"name": "amazon-kindle-bulk-downloader",
"version": "1.0.0",
"description": "",
"scripts": {
"generate-env": "op inject -i .env.template -o .env -f",
"start": "bun run src/index.ts",
"lint": "eslint src/",
"prettier": "prettier . --check",
"build": "bun build --compile src/index.ts --outfile lib/kindle-downloader",
"test": "bun test"
},
"bin": {
"kindle-downloader": "src/kindle-downloader.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/bun": "^1.2.2",
"@types/node": "^22.13.4",
"@types/prompts": "^2.4.9",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"prettier": "^3.5.1",
"typescript": "^5.7.3"
},
"dependencies": {
"dotenv": "^16.4.7",
"log-update": "^6.1.0",
"prompts": "^2.4.2",
"puppeteer": "^24.2.1",
"sanitize-filename": "^1.6.3",
"yargs": "^17.7.2"
}
}