forked from gatsbyjs/gatsby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.61 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
{
"name": "gatsby-script",
"description": "An enhanced script component for Gatsby sites with support for various loading strategies",
"version": "2.14.0-next.1",
"author": "Ty Hopp <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.modern.mjs",
"types": "dist/index.d.ts",
"files": [
"dist/*"
],
"sideEffects": false,
"scripts": {
"build": "microbundle -f cjs,modern --jsx React.createElement && tsc --emitDeclarationOnly --declaration --declarationDir dist",
"postbuild": "prepend-directive --files=dist/index.js,dist/index.modern.mjs --directive=\"use client\"",
"watch": "microbundle watch -f cjs,modern --jsx React.createElement --no-compress",
"prepare": "cross-env NODE_ENV=production npm run clean && npm run build",
"clean": "del-cli dist/*"
},
"devDependencies": {
"@gatsbyjs/reach-router": "^2.0.1",
"@testing-library/react": "^11.2.7",
"cross-env": "^7.0.3",
"del-cli": "^5.1.0",
"microbundle": "^0.15.1",
"prepend-directive": "^1.1.0",
"typescript": "^5.1.6"
},
"peerDependencies": {
"@gatsbyjs/reach-router": "^2.0.0",
"react": "^18.0.0 || ^0.0.0",
"react-dom": "^18.0.0 || ^0.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-script#readme",
"keywords": [
"gatsby"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby.git",
"directory": "packages/gatsby-script"
}
}