mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-13 05:06:50 +03:00
68d4440e38
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
59 lines
1.5 KiB
JSON
59 lines
1.5 KiB
JSON
{
|
|
"name": "react-dock",
|
|
"version": "0.7.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",
|
|
"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": {
|
|
"@types/lodash-es": "^4.17.12",
|
|
"lodash-es": "^4.17.21"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.12",
|
|
"@types/react": "^18.3.5",
|
|
"@types/react-test-renderer": "^18.3.0",
|
|
"jest": "^29.7.0",
|
|
"jest-environment-jsdom": "^29.7.0",
|
|
"react": "^18.3.1",
|
|
"react-test-renderer": "^18.3.1",
|
|
"rimraf": "^6.0.1",
|
|
"ts-jest": "^29.2.5",
|
|
"typescript": "~5.5.4"
|
|
},
|
|
"peerDependencies": {
|
|
"@types/react": "^16.3.0 || ^17.0.0 || ^18.0.0",
|
|
"react": "^16.3.0 || ^17.0.0 || ^18.0.0"
|
|
}
|
|
}
|