-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.07 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
{
"name": "libby-archiver",
"version": "0.4.0",
"description": "Browser-free Node.js library + CLI to archive your Libby / OverDrive loans — audiobooks as raw MP3 spine parts, ebooks and magazines as EPUBs, plus full metadata sidecars.",
"type": "module",
"main": "./src/index.mjs",
"exports": {
".": "./src/index.mjs"
},
"bin": {
"libby": "bin/libby.mjs"
},
"files": [
"bin",
"src",
"config.example.json",
"README.md",
"LICENSE"
],
"scripts": {
"start": "node bin/libby.mjs",
"test": "node --test"
},
"engines": {
"node": ">=20"
},
"keywords": [
"libby",
"overdrive",
"audiobook",
"archive",
"download",
"mp3",
"ebook",
"magazine",
"epub",
"library",
"cli"
],
"author": "JavaGT <java@javagrant.com>",
"license": "MIT",
"homepage": "https://github.com/JavaGT/libby-archiver#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/JavaGT/libby-archiver.git"
},
"bugs": {
"url": "https://github.com/JavaGT/libby-archiver/issues"
}
}