-
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.19 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.19 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": "image-resizer-middleware",
"version": "0.5.0",
"description": "Image resizing middleware",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"src",
"readme.md"
],
"scripts": {
"build": "tsc",
"test": "rm -rf test/thumbnails && node --experimental-strip-types test/index.ts",
"prepublishOnly": "npm run build && npm test"
},
"keywords": [
"image",
"resize",
"middleware"
],
"author": "Adrian Sieber",
"license": "MIT",
"dependencies": {
"is-image": "^4.0.0",
"sharp": "^0.34.5"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.0.0",
"express": "^4.21.0",
"typescript": "^5.6.0"
},
"directories": {
"test": "test"
},
"engines": {
"node": ">=22.6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ad-si/image-resizer-middleware.git"
},
"bugs": {
"url": "https://github.com/ad-si/image-resizer-middleware/issues"
},
"homepage": "https://github.com/ad-si/image-resizer-middleware#readme"
}