2020-08-05 15:42:25 +03:00
|
|
|
{
|
|
|
|
"name": "d3-state-visualizer",
|
2022-01-25 03:26:20 +03:00
|
|
|
"version": "1.6.0",
|
2020-08-05 15:42:25 +03:00
|
|
|
"description": "Visualize your app state with a range of reusable charts",
|
|
|
|
"keywords": [
|
|
|
|
"d3",
|
|
|
|
"state",
|
|
|
|
"store",
|
|
|
|
"tree",
|
|
|
|
"visualization"
|
|
|
|
],
|
2020-09-21 02:05:37 +03:00
|
|
|
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/d3-state-visualizer",
|
2020-08-05 15:42:25 +03:00
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/reduxjs/redux-devtools/issues"
|
|
|
|
},
|
2020-09-21 02:05:37 +03:00
|
|
|
"license": "MIT",
|
|
|
|
"author": "romseguy",
|
|
|
|
"files": [
|
|
|
|
"dist",
|
2022-01-24 05:11:46 +03:00
|
|
|
"lib",
|
2020-09-21 02:05:37 +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-09-21 02:05:37 +03:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/reduxjs/redux-devtools.git"
|
|
|
|
},
|
|
|
|
"scripts": {
|
2023-01-02 22:19:13 +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-09-21 02:05:37 +03:00
|
|
|
"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"
|
2020-08-05 15:42:25 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-12-22 00:13:25 +03:00
|
|
|
"@babel/runtime": "^7.20.6",
|
2023-01-02 22:47:07 +03:00
|
|
|
"@types/d3": "^6.7.5",
|
|
|
|
"d3": "^6.7.0",
|
2022-01-25 03:26:20 +03:00
|
|
|
"d3tooltip": "^2.1.0",
|
2020-08-10 03:54:00 +03:00
|
|
|
"deepmerge": "^4.2.2",
|
2022-01-25 03:26:20 +03:00
|
|
|
"map2tree": "^2.1.0",
|
2022-01-23 02:00:06 +03:00
|
|
|
"ramda": "^0.28.0"
|
2020-09-21 02:05:37 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-10-10 02:36:16 +03:00
|
|
|
"@babel/cli": "^7.19.3",
|
2022-12-22 00:13:25 +03:00
|
|
|
"@babel/core": "^7.20.5",
|
2022-10-10 02:36:16 +03:00
|
|
|
"@babel/eslint-parser": "^7.19.1",
|
2022-11-15 17:22:58 +03:00
|
|
|
"@babel/preset-env": "^7.20.2",
|
2022-08-12 06:41:53 +03:00
|
|
|
"@babel/preset-typescript": "^7.18.6",
|
2022-11-15 17:22:58 +03:00
|
|
|
"@types/ramda": "^0.28.20",
|
2022-12-22 00:13:25 +03:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.47.0",
|
|
|
|
"@typescript-eslint/parser": "^5.47.0",
|
|
|
|
"eslint": "^8.30.0",
|
2022-04-04 06:59:41 +03:00
|
|
|
"eslint-config-prettier": "^8.5.0",
|
2021-09-19 02:47:03 +03:00
|
|
|
"rimraf": "^3.0.2",
|
2022-12-22 00:13:25 +03:00
|
|
|
"typescript": "~4.9.4"
|
2020-08-05 15:42:25 +03:00
|
|
|
}
|
|
|
|
}
|