-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
55 lines (55 loc) · 1.49 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
{
"name": "@blazity/next-image-proxy",
"version": "1.0.2",
"description": "Next.js image proxy. Makes it possible to use dynamic domains in next/image component.",
"author": "Bart Stefanski <[email protected]> (https://bstefanski.com/)",
"license": "MIT",
"source": "src/index.ts",
"main": "./lib/next-image-proxy.cjs",
"module": "./lib/next-image-proxy.module.js",
"unpkg": "./lib/next-image-proxy.umd.js",
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"prepublishOnly": "npm run build",
"prebuild": "rimraf lib",
"build": "microbundle",
"build:watch": "microbundle watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bmstefanski/next-image-proxy.git"
},
"keywords": [
"nextjs",
"nextjs-plugin"
],
"bugs": {
"url": "https://github.com/bmstefanski/next-image-proxy/issues"
},
"homepage": "https://github.com/bmstefanski/next-image-proxy#readme",
"peerDependencies": {
"next": ">=9.0.0",
"react": ">=16.0.0",
"react-dom": ">=16.0.0"
},
"devDependencies": {
"@types/lodash.merge": "^4.6.6",
"@types/next": "^9.0.0",
"@types/node": "^18.0.0",
"@types/react": "^17.0.18",
"@types/user-agents": "^1.0.2",
"microbundle": "^0.15.0",
"prettier": "^3.0.0",
"react": ">=16.0.0",
"react-dom": ">=16.0.0",
"typescript": "^5.0.0"
},
"dependencies": {
"isomorphic-unfetch": "^4.0.0",
"lodash.merge": "^4.6.2",
"user-agents": "^1.0.934"
}
}