-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.97 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
{
"name": "@biggleszx/react-sanity-image",
"version": "0.3.0",
"description": "Simple React components for presenting images from Sanity",
"author": "BigglesZX <[email protected]>",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/BigglesZX/react-sanity-image.git"
},
"homepage": "https://github.com/BigglesZX/react-sanity-image#readme",
"bugs": {
"url": "https://github.com/BigglesZX/react-sanity-image/issues"
},
"keywords": [
"sanity",
"react",
"image",
"picture"
],
"license": "MIT",
"dependencies": {
"@sanity/image-url": "^1.0.1"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.4",
"@sanity/client": "^3.3.2",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/react": "^6.5.9",
"@types/node": "^18.6.3",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"eslint-plugin-compat": "^4.0.2",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^2.77.2",
"ts-node": "^10.9.1",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
},
"peerDependencies": {
"@sanity/client": "^3.3.2",
"react": "^18.2.0"
},
"engines": {
"node": ">=16.15.0"
},
"scripts": {
"build": "rm -rf dist/* ; rollup --config",
"lint": "eslint --ext .ts,.tsx src",
"prepublishOnly": "npm run build",
"storybook": "start-storybook -p 6006"
}
}