-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 958 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 958 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
38
{
"$schema": "https://json.schemastore.org/package.json",
"name": "universal-file-compressor",
"version": "2.0.0",
"description": "Universal file compressor with advanced compression algorithms - compress PDF, images, documents, and archives client-side",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "NODE_ENV=development node server.js",
"production": "NODE_ENV=production node server.js",
"install-deps": "npm install"
},
"keywords": [
"compressor",
"file-compression",
"client-side",
"web-app",
"pdf",
"image-compression",
"brotli",
"multi-format",
"web-workers"
],
"author": "Faisal",
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"helmet": "^7.1.0",
"cors": "^2.8.5",
"express-rate-limit": "^7.1.5",
"compression": "^1.7.4",
"morgan": "^1.10.0",
"path": "^0.12.7"
},
"engines": {
"node": ">=14.0.0"
}
}