-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.15 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.15 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
{
"name": "chart-studio-workspace",
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"examples/playground"
],
"scripts": {
"build": "bun run ./scripts/build-packages.ts",
"typecheck": "bun run ./scripts/typecheck-workspace.ts",
"typecheck:packages": "bun run ./scripts/typecheck-packages.ts",
"test": "vitest run",
"smoke:test": "bun run ./scripts/smoke-test-packages.ts",
"release": "bun run ./scripts/release-packages.ts",
"release:check": "bun run ./scripts/release-packages.ts --dry-run",
"release:publish": "bun run ./scripts/release-packages.ts --publish",
"release:publish:alpha": "bun run ./scripts/release-packages.ts --publish --tag alpha"
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"jsdom": "^28.1.0",
"lucide-react": "^0.577.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"recharts": "^3.8.0",
"tsdown": "^0.21.2",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
},
"packageManager": "bun@1.3.10"
}