-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.33 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
{
"name": "@studioframes/condense",
"version": "0.2.0",
"description": "Condense is a high-performance, stateless file optimization and minification engine for Node.js.",
"main": "src/index.js",
"bin": {
"@studioframes/condense": "./bin/cli.js"
},
"engines": {
"node": ">=20.9.0"
},
"scripts": {
"start": "node bin/cli.js",
"build": "echo 'Nothing to build'",
"test": "node --test tests/**/*.test.js",
"lint": "eslint src/ bin/ tests/",
"format": "prettier --write ."
},
"keywords": [
"minify",
"compress",
"optimize",
"image",
"video",
"middleware",
"stateless"
],
"author": "Studio Frames",
"license": "Apache-2.0",
"dependencies": {
"clean-css": "^5.3.3",
"express": "^5.2.1",
"ffmpeg-static": "^5.3.0",
"html-minifier-terser": "^7.2.0",
"htmlparser2": "^12.0.0",
"multer": "^2.2.0",
"sharp": "^0.35.1",
"svgo": "^4.0.1",
"terser": "^5.48.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/studioframes/Condense.git"
},
"bugs": {
"url": "https://github.com/studioframes/Condense/issues"
},
"homepage": "https://github.com/studioframes/Condense#readme",
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^25.9.3",
"eslint": "^8.57.1",
"prettier": "^3.8.4"
}
}