redux-devtools/packages/redux-devtools-ui/package.json
2025-06-01 10:47:33 -04:00

86 lines
2.6 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/index.js",
"types": "lib/index.d.ts",
"type": "module",
"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": "tsc && pnpm run build:css",
"build:css": "ncp fonts lib/fonts",
"clean": "rimraf lib storybook-static",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"lint": "eslint .",
"type-check": "tsc --noEmit",
"prepack": "pnpm run clean && pnpm run build",
"prepublish": "pnpm run lint && pnpm run test"
},
"dependencies": {
"@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": {
"@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",
"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"
}
}