-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.69 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 2.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
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
{
"name": "@codewavebr/wavekit",
"version": "0.2.5",
"type": "module",
"sideEffects": [
"./dist/styles.css"
],
"repository": {
"type": "git",
"url": "https://github.com/codewavebr/wavekit.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./charts": {
"types": "./dist/charts/index.d.ts",
"import": "./dist/charts/index.js"
},
"./stats": {
"types": "./dist/stats/index.d.ts",
"import": "./dist/stats/index.js"
},
"./ui": {
"types": "./dist/ui/index.d.ts",
"import": "./dist/ui/index.js"
},
"./tables": {
"types": "./dist/tables/index.d.ts",
"import": "./dist/tables/index.js"
},
"./theme": {
"types": "./dist/theme/index.d.ts",
"import": "./dist/theme/index.js"
},
"./shell": {
"types": "./dist/shell/index.d.ts",
"import": "./dist/shell/index.js"
},
"./icons": {
"types": "./dist/icons/index.d.ts",
"import": "./dist/icons/index.js"
},
"./utils": {
"types": "./dist/utils/index.d.ts",
"import": "./dist/utils/index.js"
},
"./styles.css": "./dist/styles.css"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc -p tsconfig.build.json && bun run build:assets",
"build:assets": "bun -e \"await Bun.write('dist/styles.css', await Bun.file('src/styles.css').text())\"",
"test": "tsx --test \"tests/**/*.test.ts\"",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"@heroui/react": "^3.0.0",
"@heroui/styles": "^3.0.0",
"@tanstack/react-table": "^8.0.0",
"@tanstack/react-virtual": "^3.0.0",
"color-convert": "^3.1.0",
"date-fns": "^4.0.0",
"lucide-react": "^0.511.0",
"next-themes": "^0.4.0",
"react": ">=19",
"react-dom": ">=19",
"react-hook-form": "^7.0.0",
"recharts": "^2.0.0",
"tailwindcss": ">=4.0.0"
},
"dependencies": {
"@internationalized/date": "^3.12.3"
},
"devDependencies": {
"@heroui/react": "^3.2.4",
"@heroui/styles": "^3.2.4",
"@tanstack/react-table": "^8.0.0",
"@tanstack/react-virtual": "^3.0.0",
"@types/node": "^20.9.0",
"@types/react": "19.1.8",
"@types/react-dom": "19.1.6",
"clsx": "^2.0.0",
"color-convert": "^3.1.0",
"date-fns": "^4.1.0",
"lucide-react": "^0.511.0",
"next-themes": "^0.4.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.0.0",
"recharts": "^2.0.0",
"tailwind-merge": "^3.0.0",
"tailwindcss": "^4.0.0",
"tsx": "^4.19.4",
"typescript": "^5.2.2"
}
}