-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
86 lines (86 loc) · 2.31 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "next-sanity-image",
"version": "6.1.1",
"description": "Utility for using responsive images hosted on the Sanity.io CDN with the Next.js image component.",
"bugs": {
"url": "https://github.com/lorenzodejong/next-sanity-image/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/lorenzodejong/next-sanity-image.git"
},
"license": "MIT",
"author": "Lorenzo de Jong",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"source": "./src/index.ts",
"require": "./dist/index.cjs",
"node": {
"import": "./dist/index.cjs.js",
"require": "./dist/index.cjs"
},
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "pkg build --strict && pkg --strict",
"lint": "eslint --cache --max-warnings 0 .",
"prepublishOnly": "pnpm run build",
"release": "semantic-release",
"test": "jest"
},
"browserslist": [
"> 0.2% and supports es6-module and supports es6-module-dynamic-import and not dead and not IE 11",
"maintained node versions"
],
"dependencies": {
"@sanity/image-url": "^1.0.2"
},
"devDependencies": {
"@sanity/client": "^6.0.0",
"@sanity/pkg-utils": "^2.2.13",
"@sanity/semantic-release-preset": "^4.1.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^28.1.6",
"@types/node": "^18.6.5",
"@types/react": "^18.0.17",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^28.1.3",
"next": "^13.2.4",
"prettier": "^2.8.7",
"prettier-plugin-packagejson": "^2.4.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"rimraf": "^4.4.1",
"semantic-release": "^21.0.1",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"peerDependencies": {
"@sanity/client": "^5.0.0 || ^6.0.0",
"next": "^13.0.0 || ^14.0.0",
"react": "^18.0.0"
},
"packageManager": "[email protected]"
}