-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.9 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.9 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "audnexus",
"version": "1.15.2",
"description": "An API for aggregating audiobook data",
"repository": {
"type": "git",
"url": "https://github.com/djdembeck/audnexus"
},
"scripts": {
"build-docs": "redocly build-docs docs/spec/audnexus.yaml -o docs/index.html",
"build-ts": "tsc",
"build": "bun run build-ts",
"debug": "bun run build && bun run watch-debug",
"format": "prettier --config .prettierrc --write 'src/**/*.ts'",
"lint": "bun run lint:check && eslint \"**/*.{js,ts}\" --quiet --fix",
"lint:check": "prettier --config .prettierrc --check 'src/**/*.ts' && tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet",
"preinstall": "npx only-allow bun",
"serve": "bun run dist/server.js",
"start": "bun run build && bun run serve",
"test": "bun test --timeout 30000 --parallel=1 tests/typing tests/static tests/helpers/errors tests/helpers/routes tests/helpers/utils tests/helpers/books tests/helpers/authors tests/database tests/config tests/audible",
"test:live": "bun test --timeout 60000 tests/live",
"watch-debug": "bun --watch --inspect src/server.ts",
"watch": "bun --watch src/server.ts"
},
"author": "David Dembeck",
"license": "GPL-3.0",
"type": "module",
"exports": "./dist/server.js",
"engines": {
"bun": ">=1.3.9"
},
"dependencies": {
"@fastify/cors": "^11.2.0",
"@fastify/helmet": "^13.0.0",
"@fastify/rate-limit": "^11.0.0",
"@fastify/redis": "^8.0.0",
"@fastify/schedule": "^6.0.0",
"axios": "^1.13.5",
"cheerio": "^1.0.0",
"domhandler": "6.0.1",
"fastify": "^5.7.4",
"html-to-text": "10.0.0",
"ip-range-check": "^0.2.0",
"jsrsasign": "^11.0.0",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"mongodb": "^7.1.0",
"p-limit": "^7.3.0",
"papr": "^17.0.0",
"toad-scheduler": "^4.0.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/compat": "^2.0.2",
"@eslint/eslintrc": "^3.3.0",
"@eslint/js": "^10.0.1",
"@redocly/cli": "^2.18.1",
"@types/bun": "^1.3.9",
"@types/html-to-text": "9.0.4",
"@types/jsrsasign": "10.5.15",
"@types/lodash": "^4.17.16",
"@types/node": "^26.0.0",
"@typescript-eslint/eslint-plugin": "^8.29.0",
"@typescript-eslint/parser": "^8.29.0",
"concurrently": "^10.0.0",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^17.3.0",
"prettier": "^3.5.3",
"prettier-plugin-yaml": "^1.2.0",
"typescript": "^5.9.3"
},
"imports": {
"#config/*": "./dist/config/*.js",
"#helpers/*": "./dist/helpers/*.js",
"#helpers/audible/*": "./dist/helpers/audible/*.js",
"#helpers/books/*": "./dist/helpers/books/*.js",
"#helpers/database/*": "./dist/helpers/database/*.js",
"#helpers/errors/*": "./dist/helpers/errors/*.js",
"#helpers/routes/*": "./dist/helpers/routes/*.js",
"#helpers/utils/*": "./dist/helpers/utils/*.js",
"#static/*": "./dist/static/*.js",
"#interfaces/*": "./dist/interfaces/*.js",
"#tests/*": "./tests/*"
}
}