-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.76 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": "@itiana/dashboard-kit",
"version": "0.1.0",
"description": "Real-time dashboard component library with SSE, draggable grid, KPI cards and live charts",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src __tests__ --ext .ts,.tsx"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"dependencies": {
"react-grid-layout": "^1.4.4",
"recharts": "^2.12.7"
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-grid-layout": "^1.3.5",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^9.0.0",
"eslint-plugin-react-hooks": "^5.0.0",
"jsdom": "^24.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.5.3",
"vite": "^5.3.4",
"vite-plugin-dts": "^3.9.1",
"vitest": "^2.0.4"
},
"keywords": [
"dashboard",
"real-time",
"sse",
"kpi",
"charts",
"react",
"typescript",
"widgets",
"monitoring",
"analytics"
],
"author": "itiana",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tiana-code/dashboard-kit.git"
}
}