-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 868 Bytes
/
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
{
"name": "@snorreeb/sanity-iframe-api-react",
"version": "0.3.0",
"publishConfig": {
"access": "public"
},
"description": "Helper hooks for integrating a React frontend with sanity-plugin-iframe-preview.",
"author": "Snorre Eskeland Brekke <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/snorrees/sanity-iframe-preview.git"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "tsc --build tsconfig.json",
"clean": "rimraf build *.tsbuildinfo",
"prepublishOnly": "npm run clean && npm run build"
},
"dependencies": {
"@snorreeb/sanity-iframe-api": "^0.3.0"
},
"devDependencies": {
"@types/react": "^17.0.2",
"react": "^17.0.2"
},
"peerDependencies": {
"react": ">=16.0.0"
}
}