mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-11 04:07:34 +03:00
4fb9f1a6cd
* fix(deps): update all non-major dependencies * Downgrade source-map --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Nathan Bierema <nbierema@gmail.com>
80 lines
2.4 KiB
JSON
80 lines
2.4 KiB
JSON
{
|
|
"name": "react-dock",
|
|
"version": "0.6.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/cjs/index.js",
|
|
"module": "lib/esm/index.js",
|
|
"types": "lib/types/index.d.ts",
|
|
"sideEffects": false,
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/reduxjs/redux-devtools.git"
|
|
},
|
|
"scripts": {
|
|
"build": "pnpm run build:cjs && pnpm run build:esm && pnpm run build:types",
|
|
"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",
|
|
"clean": "rimraf lib",
|
|
"test": "jest",
|
|
"lint": "eslint . --ext .ts,.tsx",
|
|
"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.22.3",
|
|
"@types/lodash": "^4.14.195",
|
|
"@types/prop-types": "^15.7.5",
|
|
"lodash.debounce": "^4.0.8",
|
|
"prop-types": "^15.8.1"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.21.5",
|
|
"@babel/core": "^7.22.1",
|
|
"@babel/eslint-parser": "^7.21.8",
|
|
"@babel/plugin-transform-runtime": "^7.22.4",
|
|
"@babel/preset-env": "^7.22.4",
|
|
"@babel/preset-react": "^7.22.3",
|
|
"@babel/preset-typescript": "^7.21.5",
|
|
"@types/jest": "^29.5.2",
|
|
"@types/lodash.debounce": "^4.0.7",
|
|
"@types/react": "^18.2.8",
|
|
"@types/react-test-renderer": "^18.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^5.59.8",
|
|
"@typescript-eslint/parser": "^5.59.8",
|
|
"eslint": "^8.42.0",
|
|
"eslint-config-prettier": "^8.8.0",
|
|
"eslint-plugin-jest": "^27.2.1",
|
|
"eslint-plugin-react": "^7.32.2",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"jest": "^29.5.0",
|
|
"jest-environment-jsdom": "^29.5.0",
|
|
"react": "^18.2.0",
|
|
"react-test-renderer": "^18.2.0",
|
|
"rimraf": "^5.0.1",
|
|
"ts-jest": "^29.1.0",
|
|
"typescript": "~5.0.4"
|
|
},
|
|
"peerDependencies": {
|
|
"@types/react": "^16.3.0 || ^17.0.0 || ^18.0.0",
|
|
"react": "^16.3.0 || ^17.0.0 || ^18.0.0"
|
|
}
|
|
}
|