2020-08-06 23:39:05 +03:00
|
|
|
{
|
2020-12-21 23:46:28 +03:00
|
|
|
"name": "@redux-devtools/serialize",
|
2023-12-09 08:05:25 +03:00
|
|
|
"version": "0.4.2",
|
2020-08-06 23:39:05 +03:00
|
|
|
"description": "Serialize unserializable data and parse it back.",
|
|
|
|
"keywords": [
|
|
|
|
"redux",
|
|
|
|
"devtools"
|
|
|
|
],
|
2020-08-29 07:14:49 +03:00
|
|
|
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-serialize",
|
2020-08-06 23:39:05 +03:00
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/reduxjs/redux-devtools/issues"
|
|
|
|
},
|
2020-08-29 07:14:49 +03:00
|
|
|
"license": "MIT",
|
|
|
|
"author": "Mihail Diordiev <zalmoxisus@gmail.com> (https://github.com/zalmoxisus)",
|
2022-01-10 18:41:53 +03:00
|
|
|
"files": [
|
2022-01-24 05:11:46 +03:00
|
|
|
"lib",
|
2022-01-10 18:41:53 +03:00
|
|
|
"src"
|
|
|
|
],
|
2022-01-24 05:11:46 +03:00
|
|
|
"main": "lib/cjs/index.js",
|
|
|
|
"module": "lib/esm/index.js",
|
|
|
|
"types": "lib/types/index.d.ts",
|
|
|
|
"sideEffects": false,
|
2020-08-29 07:14:49 +03:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/reduxjs/redux-devtools.git"
|
|
|
|
},
|
|
|
|
"scripts": {
|
2022-05-08 16:49:09 +03:00
|
|
|
"build": "pnpm run build:cjs && pnpm run build:esm && pnpm run build:types",
|
2022-01-24 05:11:46 +03:00
|
|
|
"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",
|
2022-05-18 02:15:31 +03:00
|
|
|
"build:types": "tsc --emitDeclarationOnly",
|
2022-01-24 05:11:46 +03:00
|
|
|
"clean": "rimraf lib",
|
2020-08-29 07:14:49 +03:00
|
|
|
"test": "jest",
|
|
|
|
"lint": "eslint . --ext .ts",
|
|
|
|
"type-check": "tsc --noEmit",
|
2022-05-08 16:49:09 +03:00
|
|
|
"prepack": "pnpm run clean && pnpm run build",
|
|
|
|
"prepublish": "pnpm run type-check && pnpm run lint && pnpm run test"
|
2020-08-06 23:39:05 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-06-07 04:21:49 +03:00
|
|
|
"@babel/runtime": "^7.24.7",
|
2021-12-27 05:12:31 +03:00
|
|
|
"jsan": "^3.1.14"
|
2020-08-29 07:14:49 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-06-07 04:21:49 +03:00
|
|
|
"@babel/cli": "^7.24.7",
|
|
|
|
"@babel/core": "^7.24.7",
|
|
|
|
"@babel/eslint-parser": "^7.24.7",
|
|
|
|
"@babel/plugin-transform-runtime": "^7.24.7",
|
|
|
|
"@babel/preset-env": "^7.24.7",
|
|
|
|
"@babel/preset-typescript": "^7.24.7",
|
2024-02-09 02:01:24 +03:00
|
|
|
"@types/jest": "^29.5.12",
|
2023-11-09 04:22:50 +03:00
|
|
|
"@types/jsan": "^3.1.5",
|
2024-06-07 04:21:49 +03:00
|
|
|
"@typescript-eslint/eslint-plugin": "^7.12.0",
|
|
|
|
"@typescript-eslint/parser": "^7.12.0",
|
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-02-24 02:18:02 +03:00
|
|
|
"eslint-plugin-jest": "^27.9.0",
|
2024-06-07 04:21:49 +03:00
|
|
|
"immutable": "^4.3.6",
|
2023-09-27 15:23:14 +03:00
|
|
|
"jest": "^29.7.0",
|
2024-06-07 04:21:49 +03:00
|
|
|
"rimraf": "^5.0.7",
|
|
|
|
"ts-jest": "^29.1.4",
|
2024-06-10 02:15:11 +03:00
|
|
|
"typescript": "~5.4.5"
|
2020-08-29 07:14:49 +03:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
2024-06-07 04:21:49 +03:00
|
|
|
"immutable": "^4.3.6"
|
2020-08-06 23:39:05 +03:00
|
|
|
}
|
|
|
|
}
|