-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.69 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
{
"name": "chartgpu-react",
"version": "0.3.0",
"description": "React bindings for ChartGPU — WebGPU-powered high-performance charts",
"license": "MIT",
"author": "",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"chartgpu",
"react",
"chart",
"webgpu",
"visualization",
"streaming",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/ChartGPU/chartgpu-react.git"
},
"homepage": "https://github.com/ChartGPU/chartgpu-react#readme",
"bugs": {
"url": "https://github.com/ChartGPU/chartgpu-react/issues"
},
"scripts": {
"dev": "vite",
"build": "npm run typecheck && vite build && tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit -p tsconfig.json",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest"
},
"peerDependencies": {
"@chartgpu/chartgpu": "^0.3.6",
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"peerDependenciesMeta": {
"react-dom": {
"optional": false
}
},
"devDependencies": {
"@chartgpu/chartgpu": "^0.3.6",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.0.3",
"@vitest/coverage-v8": "^4.1.10",
"jsdom": "^29.1.1",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"typescript": "^7.0.2",
"vite": "^7.1.5",
"vitest": "^4.1.10"
},
"engines": {
"node": ">=20"
},
"sideEffects": false
}