-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 895 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 895 Bytes
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
{
"name": "react-table",
"private": false,
"version": "1.0.0",
"type": "module",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"files": [
"dist"
],
"sideEffects": [
"**/*.css"
],
"scripts": {
"dev": "vite",
"format": "bunx biome check --write --unsafe src",
"prebuild": "bun run format",
"build": "tsc --p ./tsconfig-build.json && vite build"
},
"dependencies": {
"classnames": "2.5.1",
"sass": "1.93.2"
},
"peerDependencies": {
"react": "19.2.0",
"react-dom": "19.2.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bun": "1.3.1",
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2",
"@vitejs/plugin-react": "5.1.0",
"glob": "11.0.3",
"typescript": "5.9.3",
"vite": "7.1.12",
"vite-plugin-dts": "4.5.4",
"vite-plugin-lib-inject-css": "2.2.2"
},
"trustedDependencies": [
"@biomejs/biome",
"@parcel/watcher"
]
}