-
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) · 924 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 924 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.9.1",
"dependencies": {
"react": "^19.2.0",
"react-dom": "^19.2.0"
},
"devDependencies": {
"@rsbuild/core": "^1.5.16",
"@rsbuild/plugin-react": "^1.4.1",
"@rsbuild/plugin-sass": "^1.4.0",
"@types/node": "^24.7.1",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.1",
"chokidar": "^4.0.3",
"dotenv": "^17.2.3",
"electron": "^38.2.2",
"electron-builder": "26.0.12",
"esbuild": "^0.25.10",
"tsx": "^4.20.6"
}
}