-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.03 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
{
"name": "libro-client",
"version": "0.0.7",
"module": "cli.ts",
"type": "module",
"description": "Library for downloading Libro.fm audiobooks",
"author": "[email protected]",
"repository": {
"url": "git+https://github.com/jedwards1230/libro-client.git"
},
"license": "MIT",
"bin": {
"libro": "cli.ts"
},
"exports": {
".": "./cli.ts",
"./client": "./src/LibroFmClient.ts"
},
"scripts": {
"start": "bun run cli.ts",
"service": "bun run service.ts",
"build:cli": "bun build ./cli.ts --compile --minify --sourcemap --outfile bin/libro",
"build:docker": "docker build . -t jedwards1230/libro:latest",
"push:cli": "npm publish",
"push:docker": "docker push jedwards1230/libro:latest"
},
"devDependencies": {
"@types/bun": "latest",
"@types/yargs": "^17.0.32",
"typescript": "^5.4.5"
},
"dependencies": {
"@inquirer/confirm": "^3.1.6",
"@inquirer/input": "^2.1.6",
"@inquirer/password": "^2.1.6",
"@inquirer/select": "^2.3.2",
"jszip": "^3.10.1",
"winston": "^3.13.0",
"yargs": "^17.7.2"
}
}