-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.5 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
56
{
"name": "@bitpatty/next-image-s3-imgproxy-loader",
"version": "0.14.0",
"description": "imgproxy S3 extension for next/image",
"author": "Matteias Collet <matteias.collet@bluewin.ch>",
"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": "kevin@icecube.dog",
"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": "24.10.2",
"@types/react": "19.2.14",
"next": "16.1.6",
"npm-check-updates": "19.4.1",
"prettier": "3.8.1",
"rollup": "4.59.0",
"rollup-plugin-typescript2": "0.36.0",
"tslib": "2.8.1",
"typescript": "5.9.3"
},
"peerDependencies": {
"next": ">=16.0.0 <17.0.0"
},
"dependencies": {
"@bitpatty/imgproxy-url-builder": "^2.0.0"
}
}