mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-14 13:46:55 +03:00
bd463b19ec
* chore(deps): update typescript-eslint monorepo to v8 * instrument * react-base16-styling * Disable react/prop-types * react-json-tree * redux-devtools-ui * inspector-monitor * react-dock * log-monitor * map2tree * d3-state-visualizer * test-tab * rtk-query-monitor * slider-monitor * trace-tab * chart-monitor * app-core * utils * test-tab-demo * inspector-monitor-demo * redux-devtools-counter-demo * redux-devtools-todomvc-demo * remote * cli * react-dock-demo --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Nathan Bierema <nbierema@gmail.com>
67 lines
2.0 KiB
JSON
67 lines
2.0 KiB
JSON
{
|
|
"name": "@redux-devtools/serialize",
|
|
"version": "0.4.2",
|
|
"description": "Serialize unserializable data and parse it back.",
|
|
"keywords": [
|
|
"redux",
|
|
"devtools"
|
|
],
|
|
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-serialize",
|
|
"bugs": {
|
|
"url": "https://github.com/reduxjs/redux-devtools/issues"
|
|
},
|
|
"license": "MIT",
|
|
"author": "Mihail Diordiev <zalmoxisus@gmail.com> (https://github.com/zalmoxisus)",
|
|
"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\" --out-dir lib/cjs",
|
|
"build:esm": "babel src --config-file ./babel.config.esm.json --extensions \".ts\" --out-dir lib/esm",
|
|
"build:types": "tsc --emitDeclarationOnly",
|
|
"clean": "rimraf lib",
|
|
"test": "jest",
|
|
"lint": "eslint . --ext .ts",
|
|
"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.24.8",
|
|
"jsan": "^3.1.14"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.24.8",
|
|
"@babel/core": "^7.24.9",
|
|
"@babel/eslint-parser": "^7.24.8",
|
|
"@babel/plugin-transform-runtime": "^7.24.7",
|
|
"@babel/preset-env": "^7.24.8",
|
|
"@babel/preset-typescript": "^7.24.7",
|
|
"@types/jest": "^29.5.12",
|
|
"@types/jsan": "^3.1.5",
|
|
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
"@typescript-eslint/parser": "^8.0.0",
|
|
"eslint": "^8.57.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-plugin-jest": "^28.6.0",
|
|
"immutable": "^4.3.6",
|
|
"jest": "^29.7.0",
|
|
"rimraf": "^6.0.1",
|
|
"ts-jest": "^29.2.3",
|
|
"typescript": "~5.5.3"
|
|
},
|
|
"peerDependencies": {
|
|
"immutable": "^4.3.6"
|
|
}
|
|
}
|