mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-15 06:07:30 +03:00
191d419773
* d3tooltip * Add back type-check * Remove dependency * map2tree * Use lodash-es * Update jest invocation * Transform lodash-es * d3-state-visualizer * Use module: node16 * Update * Create chilly-fans-hunt.md
57 lines
1.3 KiB
JSON
57 lines
1.3 KiB
JSON
{
|
|
"name": "d3-state-visualizer",
|
|
"version": "2.0.0",
|
|
"description": "Visualize your app state with a range of reusable charts",
|
|
"keywords": [
|
|
"d3",
|
|
"state",
|
|
"store",
|
|
"tree",
|
|
"visualization"
|
|
],
|
|
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/d3-state-visualizer",
|
|
"bugs": {
|
|
"url": "https://github.com/reduxjs/redux-devtools/issues"
|
|
},
|
|
"license": "MIT",
|
|
"author": "romseguy",
|
|
"files": [
|
|
"dist",
|
|
"lib",
|
|
"src"
|
|
],
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"type": "module",
|
|
"sideEffects": false,
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/reduxjs/redux-devtools.git"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"clean": "rimraf lib",
|
|
"lint": "eslint . --ext .ts",
|
|
"type-check": "tsc --noEmit",
|
|
"prepack": "pnpm run clean && pnpm run build",
|
|
"prepublish": "pnpm run lint"
|
|
},
|
|
"dependencies": {
|
|
"@types/d3": "^7.4.3",
|
|
"d3": "^7.9.0",
|
|
"d3tooltip": "^3.0.0",
|
|
"deepmerge": "^4.3.1",
|
|
"map2tree": "^3.0.0",
|
|
"ramda": "^0.29.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/ramda": "^0.29.11",
|
|
"@typescript-eslint/eslint-plugin": "^7.4.0",
|
|
"@typescript-eslint/parser": "^7.4.0",
|
|
"eslint": "^8.57.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"rimraf": "^5.0.5",
|
|
"typescript": "~5.3.3"
|
|
}
|
|
}
|