-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.5 KB
/
package.json
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
{
"name": "@bitpatty/next-image-s3-imgproxy-loader",
"version": "0.13.1",
"description": "imgproxy S3 extension for next/image",
"author": "Matteias Collet <[email protected]>",
"homepage": "https://github.com/BitPatty/next-image-s3-imgproxy-loader#readme",
"repository": {
"type": "git",
"url": "https://github.com/BitPatty/next-image-s3-imgproxy-loader.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/BitPatty/next-image-s3-imgproxy-loader/issues"
},
"files": [
"dist"
],
"contributors": [
{
"name": "Kevin Mahoney",
"email": "[email protected]",
"url": "https://github.com/kevcube"
}
],
"main": "dist/cjs/index.jsx",
"module": "dist/esm/index.jsx",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.jsx",
"require": "./dist/cjs/index.jsx",
"types": "./dist/types/index.d.ts"
}
},
"scripts": {
"build": "rm -rf dist && rollup -c",
"deps:force-upgrade": "npm-check-updates -u && rm -rf node_modules && rm -f package-lock.json && npm i"
},
"devDependencies": {
"@types/node": "22.8.1",
"@types/react": "18.3.12",
"next": "15.0.3",
"npm-check-updates": "17.1.11",
"prettier": "3.3.3",
"rollup": "4.27.3",
"rollup-plugin-typescript2": "0.36.0",
"tslib": "2.8.1",
"typescript": "5.6.3"
},
"peerDependencies": {
"next": ">=13.0.0 <16.0.0"
},
"dependencies": {
"@bitpatty/imgproxy-url-builder": "^1.3.4"
}
}