forked from facebookresearch/hiplot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 4.1 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 4.1 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "hiplot",
"version": "0.0.3",
"description": "HiPlot is a lightweight interactive visualization tool to help AI researchers discover correlations and patterns in high-dimensional data using parallel plots and other graphical ways to represent information.",
"homepage": "https://github.com/facebookresearch/hiplot#readme",
"bugs": {
"url": "https://github.com/facebookresearch/hiplot/issues"
},
"license": "MIT",
"author": "Facebook AI Research",
"repository": {
"type": "git",
"url": "https://github.com/facebookresearch/hiplot.git"
},
"main": "npm-dist/hiplot.lib.js",
"types": "npm-dist/hiplot.d.ts",
"scripts": {
"postinstall": "node -e \"require('fs').writeFileSync('node_modules/internmap/src/index.js', '// Hotfix: https://github.com/mbostock/internmap/issues/3\\nexport const InternMap = Map;\\nexport const InternSet = Set;\\n')\"",
"build": "bun run tcm && bun run vite:build:web && bun run vite:build:test && bun run vite:build:streamlit && bun run vite:build:lib",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"lint": "oxlint",
"prepublish": "npm-run-all tcm prepublish-ts",
"tcm": "tcm src",
"vite:build:web": "HIPLOT_WEB_NAME=hiplot HIPLOT_WEB_ENTRY=./src/hiplot_web.tsx vite build -c vite.web.config.mts",
"vite:build:test": "HIPLOT_WEB_NAME=hiplot_test HIPLOT_WEB_ENTRY=./src/hiplot_test.tsx vite build -c vite.web.config.mts",
"vite:build:streamlit": "HIPLOT_WEB_NAME=hiplot_streamlit HIPLOT_WEB_ENTRY=./src/hiplot_streamlit.tsx vite build -c vite.web.config.mts",
"vite:build:lib": "vite build -c vite.lib.config.mts",
"test:js": "bunx playwright test",
"vite:dev": "vite -c vite.web.config.mts",
"prepublish-ts": "tsc --module es2020"
},
"dependencies": {
"@babel/helpers": "^7.28.6",
"@babel/runtime": "^7.28.6",
"@babel/traverse": "^7.29.0",
"datatables.net": "^2.3.7"
},
"devDependencies": {
"@playwright/test": "^1.58.1",
"@types/bootstrap": "^5.2.10",
"@types/d3": "^7.4.3",
"@types/d3-array": "^3.2.2",
"@types/d3-axis": "^3.0.6",
"@types/d3-brush": "^3.0.6",
"@types/d3-chord": "^3.0.6",
"@types/d3-color": "^3.1.3",
"@types/d3-contour": "^3.0.6",
"@types/d3-dispatch": "^3.0.7",
"@types/d3-drag": "^3.0.7",
"@types/d3-dsv": "^3.0.7",
"@types/d3-ease": "^3.0.2",
"@types/d3-fetch": "^3.0.7",
"@types/d3-force": "^3.0.10",
"@types/d3-format": "^3.0.4",
"@types/d3-geo": "^3.1.0",
"@types/d3-hierarchy": "^3.1.7",
"@types/d3-path": "^3.1.1",
"@types/d3-scale": "^4.0.9",
"@types/d3-selection": "^3.0.11",
"@types/d3-shape": "^3.1.8",
"@types/d3-transition": "^3.0.9",
"@types/d3-zoom": "^3.0.8",
"@types/jquery": "^3.5.33",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"@types/source-map": "^0.5.7",
"@types/underscore": "^1.13.0",
"@vitejs/plugin-react": "^5.1.3",
"bootstrap": "^5.3.8",
"color": "^5.0.3",
"d3": "^7.9.0",
"datatables.net-bs5": "^2.3.7",
"datatables.net-buttons": "^3.2.6",
"datatables.net-buttons-bs5": "^3.2.6",
"datatables.net-colreorder-bs5": "^2.1.2",
"datatables.net-fixedheader-bs5": "^4.0.5",
"datatables.net-responsive-bs5": "^3.0.8",
"hoist-non-react-statics": "^3.3.2",
"jquery": "^3.7.1",
"json5": "^2.2.3",
"oxfmt": "^0.27.0",
"oxlint": "^1.41.0",
"postcss-import": "^16.1.1",
"postcss-loader": "^8.2.0",
"postcss-prefix-selector": "^2.1.1",
"randomcolor": "^0.6.2",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-dropzone": "^14.4.0",
"seedrandom": "^3.0.5",
"typed-css-modules": "^0.9.1",
"typescript": "^5.9.3",
"underscore": "^1.13.7",
"vite": "^7.3.1",
"vite-plugin-css-injected-by-js": "^3.5.2"
},
"peerDependencies": {
"react": ">=19",
"react-dom": ">=19"
},
"overrides": {
"@babel/runtime": "^7.26.10",
"@babel/traverse": "^7.23.2",
"braces": "^3.0.3",
"cross-spawn": "^7.0.6",
"json5": "^2.2.3",
"lodash": "^4.17.23",
"micromatch": "^4.0.8",
"postcss": "^8.4.31",
"semver": "^7.5.4",
"ws": "^7.5.10"
}
}