-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 864 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 864 Bytes
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
{
"name": "codexa",
"version": "2.5.0",
"description": "EPUB web reader with OPDS browsing and KOReader sync support",
"main": "server/index.js",
"engines": {
"node": ">=24.0.0"
},
"allowScripts": {
"bcrypt": true,
"better-sqlite3": true,
"esbuild": true
},
"scripts": {
"start": "node server/index.js",
"dev": "nodemon server/index.js",
"build": "node build.mjs"
},
"dependencies": {
"adm-zip": "^0.5.16",
"bcrypt": "^6.0.0",
"better-sqlite3": "^11.10.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-rate-limit": "^7.5.0",
"fast-xml-parser": "^5.7.2",
"jsonwebtoken": "^9.0.2",
"multer": "^2.0.0",
"node-unrar-js": "^2.0.0"
},
"devDependencies": {
"nodemon": "^3.1.0",
"esbuild": "^0.25.0"
}
}