-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.12 KB
/
package.json
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
{
"private": true,
"name": "electronic",
"description": "A cast only Farcaster client built with Electron",
"version": "0.0.2",
"author": "@dylsteck",
"license": "MIT",
"main": "app/background.js",
"scripts": {
"dev": "nextron",
"build": "nextron build",
"build:mac": "nextron build --mac",
"build:mac:universal": "nextron build --mac --universal",
"build:linux": "nextron build --linux",
"build:win32": "nextron build --win --ia32",
"build:win64": "nextron build --win --x64",
"postinstall": "electron-builder install-app-deps"
},
"dependencies": {
"@heroicons/react": "^2.1.3",
"electron-serve": "^1.1.0",
"electron-store": "^8.1.0",
"express": "^4.19.2",
"path": "^0.12.7"
},
"devDependencies": {
"@types/node": "^18.18.12",
"@types/react": "^18.0.26",
"autoprefixer": "^10.4.16",
"electron": "^26.2.2",
"electron-builder": "^24.6.4",
"next": "^12.3.4",
"nextron": "^8.12.0",
"postcss": "^8.4.30",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.3.3",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
}
}