-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.53 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.53 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@datawheel/vizbuilder",
"version": "0.8.0",
"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"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc -b && vite build",
"dev": "vite ./example/ --config ./vite.config.ts",
"lint": "biome lint ./src",
"format": "biome format --write ./src",
"preversion": "npm run build",
"prepublishOnly": "npm run build",
"test": "tsc -b && vitest run",
"test:types": "tsc --noEmit",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest watch"
},
"keywords": [
"charts",
"d3",
"d3plus",
"datawheel",
"tesseract-olap"
],
"author": "Francisco Abarzua <francisco@datawheel.us>",
"license": "MIT",
"homepage": "https://github.com/Datawheel/vizbuilder",
"repository": {
"type": "git",
"url": "git+https://github.com/Datawheel/vizbuilder.git"
},
"dependencies": {
"@datawheel/logiclayer-client": "^0.1.5",
"@datawheel/use-translation": "^0.2.0",
"@mantine/core": "^6.0.0",
"@tabler/icons-react": "^2.22.0",
"@types/topojson": "^3.0.0",
"d3plus-common": "^1.2.4",
"d3plus-format": "^1.2.4",
"lodash-es": "^4.17.21"
},
"peerDependencies": {
"clsx": "^1.2.0",
"d3plus-export": "^1.3.0",
"d3plus-react": "^1.3.0",
"react": "^16.12.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.12.0 || ^17.0.0 || ^18.0.0",
"react-inspector": "^6.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.0",
"@emotion/react": "^11.13.3",
"@mantine/notifications": "^6.0.22",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.19.11",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@vitejs/plugin-react": "^5.1.0",
"@vitest/coverage-v8": "^4.0.18",
"jsdom": "^28.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-inspector": "^6.0.2",
"typescript": "^5.8.0",
"vite": "^7.3.0",
"vite-plugin-dts": "^4.5.0",
"vitest": "^4.0.0"
}
}