-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 863 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 863 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
{
"name": "react-dialog",
"private": true,
"version": "4.1.1",
"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",
"check-ts": "tsc"
},
"dependencies": {
"classnames": "2.5.1",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@biomejs/biome": "2.2.4",
"@types/bun": "1.2.21",
"@types/react": "18.3.24",
"@types/react-dom": "18.3.7",
"@vitejs/plugin-react": "4.7.0",
"glob": "11.0.3",
"typescript": "5.6.3",
"vite": "6.3.5",
"vite-plugin-dts": "4.5.4",
"vite-plugin-lib-inject-css": "2.2.2"
},
"trustedDependencies": [
"@biomejs/biome",
"esbuild"
]
}