-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
154 lines (154 loc) · 6.71 KB
/
Copy pathpackage.json
File metadata and controls
154 lines (154 loc) · 6.71 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
"name": "tanstack-charts-poc",
"private": true,
"license": "MIT",
"type": "module",
"packageManager": "pnpm@11.15.1",
"engines": {
"node": ">=22"
},
"scripts": {
"validate": "nx run charts-workspace:ci && git diff --check",
"benchmark": "node scripts/compare-chart-libraries.mjs",
"benchmark:check": "nx run charts-workspace:benchmark-check",
"benchmark:perf": "node scripts/compare-chart-libraries.mjs --perf-only",
"benchmark:size": "node scripts/compare-chart-libraries.mjs --size-only",
"benchmark:stress": "node scripts/stress-chart-libraries.mjs",
"benchmark:stress:full": "node scripts/stress-chart-libraries.mjs --profile=full",
"benchmark:stress:quick": "node scripts/stress-chart-libraries.mjs --profile=quick",
"benchmark:stress:standard": "node scripts/stress-chart-libraries.mjs --profile=standard",
"benchmark:update-baseline": "node scripts/compare-chart-libraries.mjs --update-baseline",
"browser:install": "playwright install --only-shell chromium",
"build": "pnpm --filter './examples/*' build",
"adapters:check": "nx run charts-workspace:adapters-check",
"bundle": "nx run charts-workspace:bundle",
"bundle:check": "nx run charts-workspace:bundle-check",
"bundle:update-baseline": "node scripts/measure-bundles.mjs --update-baseline",
"canvas:check": "node scripts/check-canvas-renderer.mjs",
"catalog:build": "nx run charts-workspace:catalog-build",
"catalog:check": "nx run charts-workspace:catalog-check",
"catalog:loading:check": "nx run charts-workspace:catalog-loading-check",
"react-catalog:check": "nx run charts-workspace:react-catalog-check",
"react-catalog:sync": "node scripts/sync-react-charts-catalog.mjs",
"dev:charts-react": "pnpm --filter @charts-poc/react-example dev",
"dev:charts-octane": "pnpm --filter @charts-poc/octane-example dev",
"dev:conformance": "pnpm --filter @charts-poc/conformance-example dev",
"dev:react": "pnpm --filter @plot-poc/react-example dev",
"dev:octane": "pnpm --filter @plot-poc/octane-example dev",
"dev:sandbox": "pnpm --filter @charts-poc/sandbox dev",
"dev:interaction-geometry": "pnpm --filter @charts-poc/sandbox dev:interaction-geometry",
"demo-data:check": "node scripts/sync-demo-data.mjs --check",
"demo-data:sync": "node scripts/sync-demo-data.mjs",
"docs:check": "nx run charts-workspace:docs-check",
"docs:sync": "node scripts/sync-package-docs.mjs",
"format": "prettier --write .",
"format:check": "nx run charts-workspace:format-check",
"conformance": "node scripts/compare-plot-catalog.mjs",
"conformance:ai:prepare": "node scripts/evaluate-chart-authoring.mjs prepare",
"conformance:ai:run": "node scripts/evaluate-chart-authoring.mjs run",
"conformance:ai:score": "node scripts/evaluate-chart-authoring.mjs score",
"conformance:quick": "node scripts/compare-plot-catalog.mjs --profile=quick",
"conformance:size": "node scripts/compare-plot-catalog.mjs --size-only",
"performance": "node scripts/measure-rendering.mjs",
"performance:pointer": "node --expose-gc scripts/measure-pointer-resolution.mjs",
"motion:poc": "node scripts/record-motion-poc.mjs",
"motion:update:poc": "node scripts/record-motion-update-poc.mjs",
"react-native:poc:bundle": "node scripts/measure-react-native-poc.mjs",
"react-native:poc:types": "node scripts/check-react-native-types.mjs",
"package:check": "nx run charts-workspace:package-check",
"release:artifacts": "nx run charts-workspace:release-artifacts",
"release:check": "node scripts/publish-release.mjs --check",
"release:publish": "node scripts/publish-release.mjs",
"test": "nx run charts-workspace:test-unit --parallel=5",
"typecheck": "nx run charts-workspace:typecheck",
"changeset": "changeset",
"changeset:publish": "node scripts/publish-release.mjs",
"changeset:version": "changeset version && node scripts/sync-release-changelog.mjs && node scripts/sync-release-version.mjs && pnpm docs:sync && pnpm install --lockfile-only --ignore-scripts --no-frozen-lockfile && pnpm format"
},
"devDependencies": {
"@changesets/changelog-github": "0.7.0",
"@changesets/cli": "2.31.1",
"@charts-poc/demo-data": "workspace:*",
"@observablehq/plot": "0.6.17",
"@observablehq/sample-datasets": "1.0.1",
"@plot-poc/host-core": "workspace:*",
"@plot-poc/observable": "workspace:*",
"@plot-poc/octane-host": "workspace:*",
"@plot-poc/react-host": "workspace:*",
"@sveltejs/vite-plugin-svelte": "^7.1.2",
"@tanstack/charts": "workspace:*",
"@tanstack/charts-d3": "workspace:*",
"@tanstack/charts-scales": "workspace:*",
"@tanstack/octane-charts": "workspace:*",
"@tanstack/react-native-charts": "workspace:*",
"@tanstack/react-charts": "workspace:*",
"@types/d3-array": "^3.2.2",
"@types/d3-brush": "^3.0.6",
"@types/d3-contour": "^3.0.6",
"@types/d3-delaunay": "^6.0.4",
"@types/d3-ease": "^3.0.2",
"@types/d3-force": "^3.0.10",
"@types/d3-format": "^3.0.4",
"@types/d3-geo": "^3.1.0",
"@types/d3-hexbin": "0.2.5",
"@types/d3-hierarchy": "^3.1.7",
"@types/d3-interpolate": "^3.0.4",
"@types/d3-polygon": "^3.0.2",
"@types/d3-quadtree": "^3.0.6",
"@types/d3-sankey": "^0.12.5",
"@types/d3-scale": "^4.0.9",
"@types/d3-selection": "^3.0.11",
"@types/d3-shape": "^3.1.8",
"@types/d3-time": "^3.0.4",
"@types/d3-zoom": "^3.0.8",
"@types/jsdom": "^27.0.0",
"@types/node": "^25.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/topojson-client": "3.1.5",
"@types/topojson-specification": "1.0.5",
"@vitejs/plugin-react": "^6.0.1",
"chart.js": "4.5.1",
"d3-array": "3.2.4",
"d3-brush": "3.0.0",
"d3-contour": "4.0.2",
"d3-delaunay": "6.0.4",
"d3-dsv": "3.0.1",
"d3-ease": "3.0.1",
"d3-force": "3.0.0",
"d3-format": "3.1.2",
"d3-geo": "3.1.1",
"d3-hexbin": "0.2.2",
"d3-hierarchy": "3.1.2",
"d3-interpolate": "3.0.1",
"d3-polygon": "3.0.1",
"d3-quadtree": "3.0.1",
"d3-sankey": "0.12.3",
"d3-scale": "4.0.2",
"d3-selection": "3.0.0",
"d3-shape": "3.2.0",
"d3-time": "3.1.0",
"d3-zoom": "3.0.0",
"echarts": "6.1.0",
"esbuild": "^0.27.0",
"jsdom": "^29.0.2",
"nx": "22.7.5",
"octane": "0.1.13",
"playwright": "1.62.0",
"prettier": "^3.8.4",
"react": "19.2.3",
"react-dom": "19.2.3",
"recharts": "3.10.1",
"semver": "7.8.5",
"solid-js": "^1.9.13",
"svelte": "^5.56.2",
"topojson-client": "3.1.0",
"typescript": "^6.0.0",
"us-atlas": "3.0.1",
"vite": "^8.0.16",
"vite-plugin-solid": "^2.11.12",
"vitest": "^4.1.9",
"world-atlas": "2.0.2",
"wrangler": "4.103.0"
}
}