-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.71 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.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
{
"name": "react-realtime-chart",
"version": "0.8.1",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"description": "A lightweight, customizable real-time chart component for React applications based on WebGL",
"repository": {
"type": "git",
"url": "git+https://github.com/jkuri/react-realtime-chart.git"
},
"keywords": [
"react",
"chart",
"realtime",
"d3",
"visualization",
"time-series",
"data-visualization",
"WebGL"
],
"scripts": {
"start": "vite",
"build": "tsc -b && vite build",
"lint": "biome lint .",
"format": "biome format . --write",
"preview": "vite preview",
"build:lib": "tsc -p tsconfig.lib.json",
"prepublishOnly": "npm run build:lib"
},
"dependencies": {
"d3": "^7.9.0"
},
"devDependencies": {
"@biomejs/biome": "^2.2.5",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-select": "^2.2.6",
"@tailwindcss/vite": "^4.1.14",
"@types/d3": "^7.4.3",
"@types/node": "^24.7.0",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.1",
"@vitejs/plugin-react": "^5.0.4",
"clsx": "^2.1.1",
"lucide-react": "^0.545.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.14",
"tw-animate-css": "^1.4.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.0",
"vite": "^7.1.9",
"vite-plugin-checker": "^0.11.0"
},
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
},
"author": {
"name": "Jan Kuri",
"email": "jkuri88@gmail.com"
},
"license": "MIT",
"readme": "README.md"
}