-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 835 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 835 Bytes
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
{
"name": "safe-gatsby-image-plugin",
"version": "1.0.8",
"description": "Safe React Image component that doesn't break when some inputs are undefined but renders a placeholder image",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"scripts": {
"build": "tsc --project tsconfig.esm.json & tsc --project tsconfig.cjs.json",
"watch": "tsc --project tsconfig.esm.json --watch & tsc --project tsconfig.cjs.json --watch"
},
"author": "PieterT2000",
"license": "MIT",
"repository": "https://github.com/CodeBirds-NL/safe-gatsy-image-plugin",
"peerDependencies": {
"react": "16.x",
"react-dom": "16.x",
"gatsby-image": "2.x"
},
"devDependencies": {
"@types/react": "16.x",
"@types/react-dom": "16.x",
"typescript": "^4.7.4"
}
}