-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.31 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
{
"name": "example-electron-application",
"version": "1.0.0",
"description": "Example Electron Application",
"productName": "Example Electron Application",
"main": "./dist/main.js",
"type": "module",
"scripts": {
"build": "node scripts/build.ts",
"build:watch": "npm run build -- -w",
"build:full": "npm run build && npm run build:packed",
"start": "electron .",
"build:unpacked": "electron-builder build --dir",
"build:packed": "electron-builder build",
"test": "npm run typecheck && npm run build",
"typecheck": "tsc --noEmit",
"prettify": "prettier --write ."
},
"devDependencies": {
"@heroicons/react": "^2.2.0",
"@tailwindcss/postcss": "^4.3.3",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"electron": "^43.4.1",
"electron-builder": "^27.0.0-alpha.7",
"esbuild": "^0.28.2",
"playwright": "^1.62.1",
"postcss": "^8.5.26",
"prettier": "^3.9.6",
"prettier-plugin-tailwindcss": "^0.8.1",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"tailwindcss": "^4.3.3",
"typescript": "~7.0.2"
},
"allowScripts": {
"electron-winstaller": true,
"esbuild": true
},
"keywords": [],
"author": {
"name": "Avi Vahl",
"email": "electron-application@example.com"
},
"license": "MIT",
"private": true
}