-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.32 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "sc-virtual-screens",
"version": "1.0.2",
"main": "main/index.js",
"icon": "build/icon.png",
"description": "Create and manage virtual screens on Windows effortlessly",
"private": false,
"license": "MIT",
"author": {
"name": "Saulo Costa",
"email": "saulotarsobc@gmail.com",
"url": "https://github.com/saulotarsobc/sc-virtual-screens"
},
"engines": {
"node": ">=18.0.0",
"yarn": ">=1.22.0"
},
"scripts": {
"dev": "yarn build-backend && electron . --dev",
"start": "yarn build && electron . --start",
"clear:install": "rimraf node_modules package-lock.json && yarn cache clean && yarn install",
"clean": "rimraf dist main frontend/out frontend/.next",
"build-frontend": "next build frontend",
"build-backend": "tsc -p backend",
"build": "yarn clean && yarn build-frontend && yarn build-backend",
"pack-app": "yarn build-frontend && yarn build-backend && yarn build && electron-builder --dir",
"dist": "yarn build && electron-builder",
"type-check": "tsc -p ./frontend/tsconfig.json && tsc -p ./backend/tsconfig.json",
"publish": "electron-builder --win -p always",
"publish-linux": "electron-builder --linux -p always",
"postinstall": "electron-builder install-app-deps",
"release": "electron-builder --win --x64"
},
"dependencies": {
"electron-is-dev": "^2.0.0",
"electron-next": "^3.1.5",
"electron-store": "^8.1.0",
"esbuild": "^0.19.11",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/node": "^20.11.5",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"autoprefixer": "^10.4.16",
"electron": "^26.6.7",
"electron-builder": "^24.9.1",
"next": "^14.0.4",
"postcss": "^8.4.33",
"rimraf": "^5.0.5",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3"
},
"build": {
"productName": "SC - Virtual Screens",
"appId": "sc-virtual-screens",
"win": {
"publish": [
"github"
],
"publisherName": "Saulo INC",
"target": [
"nsis"
]
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"asar": true,
"files": [
"main",
"frontend/out"
],
"extraResources": [
{
"from": "utils",
"to": "utils"
}
]
}
}