-
Notifications
You must be signed in to change notification settings - Fork 10.3k
/
Copy pathpackage.json
55 lines (55 loc) · 1.56 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": "gatsby-plugin-sharp",
"description": "Wrapper of the Sharp image manipulation library for Gatsby plugins",
"version": "5.15.0-next.1",
"author": "Kyle Mathews <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
"@babel/runtime": "^7.20.13",
"async": "^3.2.5",
"bluebird": "^3.7.2",
"debug": "^4.3.4",
"filenamify": "^4.3.0",
"fs-extra": "^11.2.0",
"gatsby-core-utils": "^4.15.0-next.0",
"gatsby-plugin-utils": "^4.15.0-next.0",
"lodash": "^4.17.21",
"probe-image-size": "^7.2.3",
"semver": "^7.5.3",
"sharp": "^0.32.6"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"babel-preset-gatsby-package": "^3.15.0-next.0",
"cross-env": "^7.0.3",
"gatsby-plugin-image": "^3.15.0-next.1"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-sharp#readme",
"keywords": [
"gatsby",
"gatsby-plugin",
"image",
"sharp"
],
"license": "MIT",
"main": "index.js",
"peerDependencies": {
"gatsby": "^5.0.0-next"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby.git",
"directory": "packages/gatsby-plugin-sharp"
},
"scripts": {
"build": "babel src --out-dir . --ignore \"**/__tests__\" --extensions \".ts,.js\"",
"prepare": "cross-env NODE_ENV=production npm run build",
"watch": "babel -w src --out-dir . --ignore \"**/__tests__\" --extensions \".ts,.js\""
},
"engines": {
"node": ">=18.0.0"
}
}