mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-11 00:32:19 +03:00
* Replace styled-components with Emotion in ui * react-dock * Remainder * Fix * Format * Update snapshots * Create bright-sheep-joke.md
98 lines
3.2 KiB
JSON
98 lines
3.2 KiB
JSON
{
|
|
"name": "@redux-devtools/ui",
|
|
"version": "1.4.0",
|
|
"description": "Reusable React components for building DevTools monitors and apps.",
|
|
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-ui",
|
|
"bugs": {
|
|
"url": "https://github.com/reduxjs/redux-devtools/issues"
|
|
},
|
|
"license": "MIT",
|
|
"author": "Mihail Diordiev <zalmoxisus@gmail.com> (https://github.com/zalmoxisus)",
|
|
"files": [
|
|
"fonts",
|
|
"lib",
|
|
"src"
|
|
],
|
|
"main": "lib/cjs/index.js",
|
|
"module": "lib/esm/index.js",
|
|
"types": "lib/types/index.d.ts",
|
|
"sideEffects": [
|
|
"*.css"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/reduxjs/redux-devtools.git"
|
|
},
|
|
"scripts": {
|
|
"start": "pnpm run storybook",
|
|
"storybook": "storybook dev -p 6006",
|
|
"build:storybook": "storybook build --quiet",
|
|
"build": "pnpm run build:lib && pnpm run build:storybook",
|
|
"build:lib": "pnpm run build:cjs && pnpm run build:esm && pnpm run build:types && pnpm run build:css",
|
|
"build:cjs": "babel src --extensions \".ts,.tsx\" --out-dir lib/cjs",
|
|
"build:esm": "babel src --config-file ./babel.config.esm.json --extensions \".ts,.tsx\" --out-dir lib/esm",
|
|
"build:types": "tsc --emitDeclarationOnly",
|
|
"build:css": "ncp fonts lib/fonts",
|
|
"clean": "rimraf lib storybook-static",
|
|
"test": "jest",
|
|
"lint": "eslint .",
|
|
"type-check": "tsc --noEmit",
|
|
"prepack": "pnpm run clean && pnpm run build",
|
|
"prepublish": "pnpm run type-check && pnpm run lint && pnpm run test"
|
|
},
|
|
"dependencies": {
|
|
"@babel/runtime": "^7.27.1",
|
|
"@rjsf/core": "^5.24.10",
|
|
"@rjsf/utils": "^5.24.10",
|
|
"@rjsf/validator-ajv8": "^5.24.10",
|
|
"@types/codemirror": "^5.60.15",
|
|
"@types/json-schema": "^7.0.15",
|
|
"@types/simple-element-resize-detector": "^1.3.3",
|
|
"codemirror": "^5.65.19",
|
|
"color": "^5.0.0",
|
|
"react-base16-styling": "workspace:^",
|
|
"react-icons": "^5.5.0",
|
|
"react-select": "^5.10.1",
|
|
"simple-element-resize-detector": "^1.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.27.2",
|
|
"@babel/core": "^7.27.1",
|
|
"@babel/eslint-parser": "^7.27.1",
|
|
"@babel/plugin-transform-runtime": "^7.27.1",
|
|
"@babel/preset-env": "^7.27.2",
|
|
"@babel/preset-react": "^7.27.1",
|
|
"@babel/preset-typescript": "^7.27.1",
|
|
"@emotion/react": "^11.14.0",
|
|
"@emotion/styled": "^11.14.0",
|
|
"@storybook/addon-onboarding": "^9.0.2",
|
|
"@storybook/react-vite": "^9.0.2",
|
|
"@testing-library/dom": "^10.4.0",
|
|
"@testing-library/react": "^16.3.0",
|
|
"@testing-library/user-event": "^14.6.1",
|
|
"@types/color": "^4.2.0",
|
|
"@types/node": "^22.15.21",
|
|
"@types/jest": "^29.5.14",
|
|
"@types/react": "^19.1.6",
|
|
"babel-loader": "^10.0.0",
|
|
"csstype": "^3.1.3",
|
|
"jest": "^29.7.0",
|
|
"jest-environment-jsdom": "^29.7.0",
|
|
"ncp": "^2.0.0",
|
|
"react": "^19.1.0",
|
|
"react-dom": "^19.1.0",
|
|
"react-is": "^19.1.0",
|
|
"rimraf": "^6.0.1",
|
|
"storybook": "^9.0.2",
|
|
"ts-jest": "^29.3.4",
|
|
"typescript": "~5.8.3",
|
|
"vite": "^6.3.5"
|
|
},
|
|
"peerDependencies": {
|
|
"@emotion/react": "^11.14.0",
|
|
"@emotion/styled": "^11.14.0",
|
|
"@types/react": "^16.3.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
"react": "^16.3.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
}
|
|
}
|