mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-10 19:56:54 +03:00
9fa9a6ff79
* fix(deps): update all non-major dependencies * weird --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Nathan Bierema <nbierema@gmail.com>
63 lines
1.8 KiB
JSON
63 lines
1.8 KiB
JSON
{
|
|
"name": "@redux-devtools/instrument",
|
|
"version": "2.2.0",
|
|
"description": "Redux DevTools instrumentation",
|
|
"keywords": [
|
|
"redux",
|
|
"devtools",
|
|
"flux",
|
|
"hot reloading",
|
|
"time travel",
|
|
"live edit"
|
|
],
|
|
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-instrument",
|
|
"bugs": {
|
|
"url": "https://github.com/reduxjs/redux-devtools/issues"
|
|
},
|
|
"license": "MIT",
|
|
"author": "Dan Abramov <dan.abramov@me.com> (http://github.com/gaearon)",
|
|
"files": [
|
|
"lib",
|
|
"src"
|
|
],
|
|
"main": "lib/cjs/instrument.js",
|
|
"module": "lib/esm/instrument.js",
|
|
"types": "lib/types/instrument.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 .",
|
|
"type-check": "tsc --noEmit",
|
|
"prepack": "pnpm run clean && pnpm run build",
|
|
"prepublish": "pnpm run type-check && pnpm run lint && pnpm run test"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.24.8",
|
|
"@babel/core": "^7.25.2",
|
|
"@babel/eslint-parser": "^7.25.1",
|
|
"@babel/plugin-transform-runtime": "^7.25.4",
|
|
"@babel/preset-env": "^7.25.4",
|
|
"@babel/preset-typescript": "^7.24.7",
|
|
"@types/jest": "^29.5.12",
|
|
"@types/node": "^20.16.1",
|
|
"jest": "^29.7.0",
|
|
"redux": "^5.0.1",
|
|
"rimraf": "^6.0.1",
|
|
"rxjs": "^7.8.1",
|
|
"ts-jest": "^29.2.5",
|
|
"typescript": "~5.5.4"
|
|
},
|
|
"peerDependencies": {
|
|
"redux": "^3.4.0 || ^4.0.0 || ^5.0.0"
|
|
}
|
|
}
|