-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.46 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.46 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
{
"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 && npm run lint",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"prettify": "prettier --write ."
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@heroicons/react": "^2.2.0",
"@tailwindcss/postcss": "^4.2.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"electron": "^41.1.1",
"electron-builder": "^26.8.1",
"esbuild": "^0.27.4",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "7.1.0-canary-e0cc7202-20260227",
"playwright": "^1.59.0",
"postcss": "^8.5.8",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tailwindcss": "^4.2.2",
"typescript": "~6.0.2",
"typescript-eslint": "^8.58.0"
},
"keywords": [],
"author": {
"name": "Avi Vahl",
"email": "electron-application@example.com"
},
"license": "MIT",
"private": true
}