-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.9 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@datawheel/vizbuilder",
"version": "0.6.0-rc.4",
"description": "A React component that generates multiple kinds of charts from a tesseract-olap dataset.",
"readme": "README.md",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs.js",
"default": "./dist/index.esm.js"
},
"./react": {
"types": "./dist/react.d.ts",
"require": "./dist/react.cjs.js",
"default": "./dist/react.esm.js"
},
"./schema": {
"types": "./dist/schema.d.ts",
"require": "./dist/schema.cjs.js",
"default": "./dist/schema.esm.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"prepublishOnly": "tsup",
"start": "vite"
},
"keywords": [
"charts",
"d3",
"d3plus",
"datawheel",
"tesseract-olap"
],
"author": "Francisco Abarzua <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/Datawheel/vizbuilder",
"repository": {
"type": "git",
"url": "https://github.com/Datawheel/vizbuilder.git"
},
"dependencies": {
"@datawheel/use-translation": "^0.2.0",
"@mantine/core": "^6.0.0",
"@tabler/icons-react": "^2.22.0",
"clsx": "^1.2.1",
"d3plus-common": "^1.2.4",
"d3plus-export": "^1.3.0",
"d3plus-format": "^1.2.4",
"d3plus-react": "^1.3.3",
"lodash-es": "^4.17.21"
},
"peerDependencies": {
"react": "^16.12.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.12.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@emotion/react": "^11.13.3",
"@types/lodash-es": "^4.17.12",
"@types/react": "^18.0.0",
"@vitejs/plugin-react": "^4.3.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-inspector": "^6.0.2",
"tsup": "^8.3.0",
"typescript": "^5.6.2",
"vite": "^5.4.8"
}
}