mirror of
https://github.com/zebrajr/react.git
synced 2026-01-15 12:15:22 +00:00
* Add .browser and .node explicit entry points This can be useful when the automatic selection doesn't work properly. * Remove react/index I'm not sure why I added this in the first place. Perhaps due to how our builds work somehow. * Remove build-info.json from files field
35 lines
774 B
JSON
35 lines
774 B
JSON
{
|
|
"name": "react-pg",
|
|
"description": "React bindings for PostgreSQL",
|
|
"version": "0.0.0",
|
|
"repository": {
|
|
"type" : "git",
|
|
"url" : "https://github.com/facebook/react.git",
|
|
"directory": "packages/react-pg"
|
|
},
|
|
"files": [
|
|
"LICENSE",
|
|
"README.md",
|
|
"index.js",
|
|
"index.node.server.js",
|
|
"index.browser.server.js",
|
|
"cjs/"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"react-server": {
|
|
"node": "./index.node.server.js",
|
|
"browser": "./index.browser.server.js"
|
|
},
|
|
"default": "./index.js"
|
|
},
|
|
"./index.node.server": "./index.node.server.js",
|
|
"./index.browser.server": "./index.browser.server.js",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^17.0.0",
|
|
"pg": "*"
|
|
}
|
|
}
|