UNPKG

1.85 kBJSONView Raw
1{
2 "name": "d3-state-visualizer",
3 "version": "2.0.0",
4 "description": "Visualize your app state with a range of reusable charts",
5 "keywords": [
6 "d3",
7 "state",
8 "store",
9 "tree",
10 "visualization"
11 ],
12 "homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/d3-state-visualizer",
13 "bugs": {
14 "url": "https://github.com/reduxjs/redux-devtools/issues"
15 },
16 "license": "MIT",
17 "author": "romseguy",
18 "files": [
19 "dist",
20 "lib",
21 "src"
22 ],
23 "main": "lib/cjs/index.js",
24 "module": "lib/esm/index.js",
25 "types": "lib/types/index.d.ts",
26 "sideEffects": false,
27 "repository": {
28 "type": "git",
29 "url": "https://github.com/reduxjs/redux-devtools.git"
30 },
31 "dependencies": {
32 "@babel/runtime": "^7.20.6",
33 "@types/d3": "^7.4.0",
34 "d3": "^7.8.0",
35 "d3tooltip": "^3.0.0",
36 "deepmerge": "^4.2.2",
37 "map2tree": "^3.0.0",
38 "ramda": "^0.28.0"
39 },
40 "devDependencies": {
41 "@babel/cli": "^7.19.3",
42 "@babel/core": "^7.20.5",
43 "@babel/eslint-parser": "^7.19.1",
44 "@babel/preset-env": "^7.20.2",
45 "@babel/preset-typescript": "^7.18.6",
46 "@types/ramda": "^0.28.20",
47 "@typescript-eslint/eslint-plugin": "^5.47.0",
48 "@typescript-eslint/parser": "^5.47.0",
49 "eslint": "^8.30.0",
50 "eslint-config-prettier": "^8.5.0",
51 "rimraf": "^3.0.2",
52 "typescript": "~4.9.4"
53 },
54 "scripts": {
55 "build": "pnpm run build:cjs && pnpm run build:esm && pnpm run build:types",
56 "build:cjs": "babel src --extensions \".ts\" --out-dir lib/cjs",
57 "build:esm": "babel src --config-file ./babel.config.esm.json --extensions \".ts\" --out-dir lib/esm",
58 "build:types": "tsc --emitDeclarationOnly",
59 "clean": "rimraf lib",
60 "lint": "eslint . --ext .ts",
61 "type-check": "tsc --noEmit",
62 "prepublish": "pnpm run type-check && pnpm run lint"
63 }
64}
\No newline at end of file