-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.27 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.27 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
{
"name": "git-bash",
"version": "0.0.1",
"private": true,
"type": "module",
"homepage": "https://EvgenBabenko.github.io/git-bash",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./dist/index.css": "./dist/index.css"
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build:app": "rsbuild build",
"dev:app": "rsbuild dev --open",
"preview": "rsbuild preview",
"deploy": "gh-pages -d examples/dist",
"build": "rslib build",
"dev": "rslib build --watch",
"test": "tsx --test"
},
"dependencies": {
"@fontsource/roboto-mono": "5.2.6",
"lucide-react": "0.511.0",
"mitt": "3.0.1"
},
"devDependencies": {
"@rsbuild/core": "1.3.15",
"@rsbuild/plugin-image-compress": "1.2.0",
"@rsbuild/plugin-react": "1.3.0",
"@rslib/core": "0.10.0",
"@tailwindcss/postcss": "4.1.8",
"@types/node": "24.0.1",
"@types/react": "19.1.2",
"@types/react-dom": "19.1.3",
"gh-pages": "6.3.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"tailwindcss": "4.1.8",
"tsx": "4.20.3",
"typescript": "5.8.3"
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"engines": {
"node": "^22"
}
}