-
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) · 1.51 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.51 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
{
"name": "vite-typescript-electron",
"version": "0.1.0",
"productName": "Vite TypeScript Electron",
"author": "Chris Idzerda",
"description": "Vite TypeScript Electron example application",
"license": "MIT",
"main": "out/main/index.js",
"packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610",
"private": true,
"scripts": {
"build": "yarn typecheck && electron-vite build",
"lint": "eslint . --fix --max-warnings 0 --report-unused-disable-directives",
"postinstall": "electron-builder install-app-deps",
"preview": "electron-vite preview",
"release": "yarn build && electron-builder --publish=never",
"start": "electron-vite --sourcemap --watch",
"typecheck": "yarn typecheck:node && yarn typecheck:web",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false"
},
"dependencies": {
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@electron-toolkit/tsconfig": "^1.0.1",
"@eslint/compat": "^1.3.0",
"@eslint/js": "^9.29.0",
"@types/node": "^24.0.1",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.5.2",
"electron": "^36.4.0",
"electron-builder": "^26.0.12",
"electron-vite": "^3.1.0",
"eslint": "^9.29.0",
"eslint-plugin-react": "^7.37.5",
"globals": "^16.2.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.0",
"vite": "^6.3.5"
}
}