2020-08-16 00:27:22 +03:00
|
|
|
{
|
|
|
|
"name": "react-dock",
|
2024-04-08 00:19:20 +03:00
|
|
|
"version": "0.7.0",
|
2020-08-16 00:27:22 +03:00
|
|
|
"description": "Resizable dockable react component",
|
2020-08-24 07:37:43 +03:00
|
|
|
"keywords": [
|
|
|
|
"react",
|
|
|
|
"reactjs",
|
|
|
|
"dock",
|
|
|
|
"sidebar"
|
|
|
|
],
|
|
|
|
"homepage": "https://github.com/reduxjs/redux-devtools",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/reduxjs/redux-devtools/issues"
|
2020-08-16 00:27:22 +03:00
|
|
|
},
|
2020-08-24 07:37:43 +03:00
|
|
|
"license": "MIT",
|
|
|
|
"author": "Alexander <alexkuz@gmail.com> (http://kuzya.org/)",
|
2020-08-16 00:27:22 +03:00
|
|
|
"files": [
|
2022-01-24 05:11:46 +03:00
|
|
|
"lib",
|
2020-08-16 00:27:22 +03:00
|
|
|
"src"
|
|
|
|
],
|
2024-04-08 00:04:45 +03:00
|
|
|
"main": "lib/index.js",
|
|
|
|
"types": "lib/index.d.ts",
|
|
|
|
"type": "module",
|
2022-01-24 05:11:46 +03:00
|
|
|
"sideEffects": false,
|
2020-08-16 00:27:22 +03:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/reduxjs/redux-devtools.git"
|
|
|
|
},
|
2020-08-24 07:37:43 +03:00
|
|
|
"scripts": {
|
2024-04-08 00:04:45 +03:00
|
|
|
"build": "tsc",
|
2022-01-24 05:11:46 +03:00
|
|
|
"clean": "rimraf lib",
|
2024-04-08 00:04:45 +03:00
|
|
|
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
|
2020-08-24 07:37:43 +03:00
|
|
|
"lint": "eslint . --ext .ts,.tsx",
|
|
|
|
"type-check": "tsc --noEmit",
|
2022-05-08 16:49:09 +03:00
|
|
|
"prepack": "pnpm run clean && pnpm run build",
|
2024-04-08 00:04:45 +03:00
|
|
|
"prepublish": "pnpm run lint && pnpm run test"
|
2020-08-24 07:37:43 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-04-08 00:04:45 +03:00
|
|
|
"@types/lodash-es": "^4.17.12",
|
|
|
|
"lodash-es": "^4.17.21"
|
2020-08-16 00:27:22 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-02-09 02:01:24 +03:00
|
|
|
"@types/jest": "^29.5.12",
|
2024-06-07 04:21:49 +03:00
|
|
|
"@types/react": "^18.3.3",
|
|
|
|
"@types/react-test-renderer": "^18.3.0",
|
2024-08-06 06:27:22 +03:00
|
|
|
"@typescript-eslint/eslint-plugin": "^8.0.1",
|
|
|
|
"@typescript-eslint/parser": "^8.0.1",
|
2024-02-24 02:18:02 +03:00
|
|
|
"eslint": "^8.57.0",
|
2023-12-10 06:44:13 +03:00
|
|
|
"eslint-config-prettier": "^9.1.0",
|
2024-08-06 06:27:22 +03:00
|
|
|
"eslint-plugin-jest": "^28.7.0",
|
2024-07-20 16:17:14 +03:00
|
|
|
"eslint-plugin-react": "^7.35.0",
|
2024-06-07 04:21:49 +03:00
|
|
|
"eslint-plugin-react-hooks": "^4.6.2",
|
2023-09-27 15:23:14 +03:00
|
|
|
"jest": "^29.7.0",
|
|
|
|
"jest-environment-jsdom": "^29.7.0",
|
2024-06-07 04:21:49 +03:00
|
|
|
"react": "^18.3.1",
|
|
|
|
"react-test-renderer": "^18.3.1",
|
2024-07-16 18:35:07 +03:00
|
|
|
"rimraf": "^6.0.1",
|
2024-08-06 06:27:22 +03:00
|
|
|
"ts-jest": "^29.2.4",
|
|
|
|
"typescript": "~5.5.4"
|
2020-08-16 00:27:22 +03:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
2022-05-30 18:32:32 +03:00
|
|
|
"@types/react": "^16.3.0 || ^17.0.0 || ^18.0.0",
|
|
|
|
"react": "^16.3.0 || ^17.0.0 || ^18.0.0"
|
2020-08-16 00:27:22 +03:00
|
|
|
}
|
|
|
|
}
|