-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.72 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.72 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
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
{
"name": "teleprompt",
"version": "1.0.0",
"description": "Floating teleprompter for video calls",
"author": "Teleprompt",
"private": true,
"main": "electron/main.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"electron:dev": "concurrently \"next dev\" \"wait-on http://localhost:3000 && electron .\"",
"electron:build": "next build && electron-builder --config",
"electron:build:mac": "next build && electron-builder --mac --config",
"electron:build:win": "next build && electron-builder --win --config"
},
"dependencies": {
"next": "^16.1.6",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"zustand": "^5.0.11"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.18",
"@types/node": "^25.2.3",
"@types/react": "^19.2.14",
"concurrently": "^9.1.2",
"electron": "^35.1.2",
"electron-builder": "^26.0.12",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.18",
"tsx": "^4.19.4",
"typescript": "^5.9.3",
"wait-on": "^8.0.3"
},
"build": {
"appId": "com.teleprompt.app",
"productName": "Teleprompt",
"directories": {
"output": "release"
},
"files": [
"electron/**/*",
"!node_modules/**/*"
],
"extraResources": [
{
"from": "out",
"to": "out"
}
],
"mac": {
"target": [
{
"target": "dmg",
"arch": ["universal"]
}
],
"category": "public.app-category.productivity"
},
"win": {
"target": [
{
"target": "nsis",
"arch": ["x64"]
}
]
},
"nsis": {
"allowToChangeInstallationDirectory": true,
"oneClick": false
}
}
}