-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 925 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 925 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
{
"name": "electron-react-typescript",
"version": "3.0.0",
"description": "Electron + React + Typescript starter",
"author": {
"name": "Brendon Cambuí",
"url": "https://github.com/brcambui",
"email": "brendon@cambui.dev"
},
"license": "MIT",
"main": "./build/main/main.js",
"scripts": {
"dev": "tsx --watch ./electron/scripts/dev.ts",
"build": "tsx ./electron/scripts/build.ts"
},
"packageManager": "yarn@4.17.0",
"dependencies": {
"react": "^19.2.7",
"react-dom": "^19.2.7"
},
"devDependencies": {
"@rsbuild/core": "^2.1.2",
"@rsbuild/plugin-react": "^2.1.0",
"@rsbuild/plugin-sass": "^2.0.0",
"@types/node": "^26.0.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"chokidar": "^5.0.0",
"dotenv": "^17.4.2",
"electron": "^43.0.0",
"electron-builder": "26.15.3",
"esbuild": "^0.28.1",
"tsx": "^4.22.4"
}
}