mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-14 10:12:27 +03:00
52 lines
1.2 KiB
JSON
52 lines
1.2 KiB
JSON
{
|
|
"name": "react-dock",
|
|
"version": "0.8.0",
|
|
"description": "Resizable dockable react component",
|
|
"keywords": [
|
|
"react",
|
|
"reactjs",
|
|
"dock",
|
|
"sidebar"
|
|
],
|
|
"homepage": "https://github.com/reduxjs/redux-devtools",
|
|
"bugs": {
|
|
"url": "https://github.com/reduxjs/redux-devtools/issues"
|
|
},
|
|
"license": "MIT",
|
|
"author": "Alexander <alexkuz@gmail.com> (http://kuzya.org/)",
|
|
"files": [
|
|
"lib",
|
|
"src"
|
|
],
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"type": "module",
|
|
"sideEffects": false,
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/reduxjs/redux-devtools.git"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"clean": "rimraf lib",
|
|
"lint": "eslint .",
|
|
"type-check": "tsc --noEmit",
|
|
"prepack": "pnpm run clean && pnpm run build",
|
|
"prepublish": "pnpm run lint"
|
|
},
|
|
"dependencies": {
|
|
"@types/lodash-es": "^4.17.12",
|
|
"lodash-es": "^4.17.21"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^19.1.8",
|
|
"react": "^19.1.0",
|
|
"rimraf": "^6.0.1",
|
|
"typescript": "~5.8.3"
|
|
},
|
|
"peerDependencies": {
|
|
"@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"
|
|
}
|
|
}
|