mirror of
https://github.com/gregberge/loadable-components.git
synced 2025-12-08 19:46:26 +00:00
49 lines
1.4 KiB
JSON
49 lines
1.4 KiB
JSON
{
|
|
"name": "@loadable/server",
|
|
"description": "Server utilities for loadable.",
|
|
"version": "5.16.7",
|
|
"type": "module",
|
|
"main": "./dist/cjs/loadable-server.cjs.js",
|
|
"module": "./dist/esm/loadable-server.esm.mjs",
|
|
"exports": {
|
|
".": {
|
|
"require": "./dist/cjs/loadable-server.cjs.js",
|
|
"import": "./dist/esm/loadable-server.esm.mjs",
|
|
"default": "./dist/cjs/loadable-server.cjs.js"
|
|
}
|
|
},
|
|
"repository": "git@github.com:gregberge/loadable-components.git",
|
|
"author": "Greg Bergé <berge.greg@gmail.com>",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"keywords": [
|
|
"loadable"
|
|
],
|
|
"engines": {
|
|
"node": ">=8"
|
|
},
|
|
"funding": {
|
|
"type": "github",
|
|
"url": "https://github.com/sponsors/gregberge"
|
|
},
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"prebuild": "shx rm -rf dist",
|
|
"build": "cross-env rollup -c && yarn create-cjs-package-json",
|
|
"create-cjs-package-json": "echo '{\"type\": \"commonjs\"}' > ./dist/cjs/package.json",
|
|
"prepublishOnly": "yarn run build",
|
|
"update-fixtures": "yarn --cwd ../../examples/__fixtures__ build:webpack && rm -rf ./__fixtures__ && cp -R ../../examples/__fixtures__/target ./__fixtures__ "
|
|
},
|
|
"peerDependencies": {
|
|
"@loadable/component": "^5.0.1",
|
|
"react": "^16.3.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@loadable/component": "^5.16.7"
|
|
},
|
|
"dependencies": {
|
|
"lodash": "^4.17.15"
|
|
}
|
|
}
|