This is because upstream marks 8.6.14 as "latest" for 3 of the subpackages, but 8.6.15 as "latest" for all others. This confuses npm heavily. And yes, ideally we upgrade to 10, but that is for another day. First we unbreak building this repo!
82 lines
2.5 KiB
JSON
82 lines
2.5 KiB
JSON
{
|
|
"name": "@eveshipfit/react",
|
|
"publishConfig": {
|
|
"registry": "https://npm.pkg.github.com/EVEShipFit"
|
|
},
|
|
"version": "0.0.0-git",
|
|
"description": "React component library to quickly and easily show EVE Online ship fits in your own application",
|
|
"scripts": {
|
|
"build": "rollup -c",
|
|
"build-storybook": "storybook build",
|
|
"dev": "storybook dev -p 6006 --no-open",
|
|
"format": "prettier -w .storybook src",
|
|
"lint": "eslint .storybook src --ext .js,.ts,.tsx --cache && prettier -c .storybook src"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/EVEShipFit/react.git"
|
|
},
|
|
"author": "EVEShipFit Team <info@eveship.fit>",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"clsx": "^2",
|
|
"jwt-decode": "^4"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/preset-env": "^7",
|
|
"@babel/preset-react": "^7",
|
|
"@babel/preset-typescript": "^7",
|
|
"@rollup/plugin-commonjs": "^25",
|
|
"@rollup/plugin-node-resolve": "^15",
|
|
"@rollup/plugin-terser": "^0",
|
|
"@storybook/addon-essentials": "8.6.15",
|
|
"@storybook/addon-interactions": "8.6.15",
|
|
"@storybook/addon-links": "^8",
|
|
"@storybook/addon-webpack5-compiler-babel": "^3",
|
|
"@storybook/blocks": "^8",
|
|
"@storybook/preview-api": "^8",
|
|
"@storybook/react": "^8",
|
|
"@storybook/react-webpack5": "^8",
|
|
"@storybook/test": "^8",
|
|
"@storybook/types": "8.6.15",
|
|
"@types/react": "^18",
|
|
"@types/react-dom": "^18",
|
|
"@typescript-eslint/eslint-plugin": "^7",
|
|
"@typescript-eslint/parser": "^7",
|
|
"eslint": "^8",
|
|
"eslint-config-airbnb": "19",
|
|
"eslint-config-airbnb-typescript": "^18",
|
|
"eslint-config-prettier": "^9",
|
|
"eslint-import-resolver-typescript": "^3",
|
|
"eslint-plugin-jsx-a11y": "^6",
|
|
"eslint-plugin-prettier": "^5",
|
|
"eslint-plugin-react": "^7",
|
|
"eslint-plugin-react-hooks": "^4",
|
|
"eslint-plugin-storybook": "^0",
|
|
"react": "^18",
|
|
"react-dom": "^18",
|
|
"rollup": "^4",
|
|
"rollup-plugin-dts": "^6",
|
|
"rollup-plugin-esbuild": "^6",
|
|
"rollup-plugin-node-externals": "^7",
|
|
"rollup-plugin-postcss": "^4",
|
|
"rollup-plugin-typescript-paths": "^1",
|
|
"storybook": "^8",
|
|
"tslib": "^2",
|
|
"typescript": "^5",
|
|
"typescript-plugin-css-modules": "^5"
|
|
},
|
|
"peerDependencies": {
|
|
"@eveshipfit/data": "^10",
|
|
"@eveshipfit/dogma-engine": "^7",
|
|
"react": "^18",
|
|
"react-dom": "^18"
|
|
},
|
|
"main": "dist/cjs/index.js",
|
|
"module": "dist/esm/index.js",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"types": "dist/index.d.ts"
|
|
}
|