-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.57 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.57 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "stage-teleprompter-pro",
"private": true,
"version": "0.1.0",
"type": "module",
"description": "Professional teleprompter application for live events with dual-window support and text mirroring capabilities",
"author": "Fernando Gabriel Russo <russofg@gmail.com>",
"homepage": "https://github.com/matecodedev/stage-teleprompter-pro",
"engines": {
"node": ">=20.19.0",
"npm": ">=10.0.0"
},
"main": "electron/main.js",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:windows": "set ROLLUP_SKIP_NATIVE=true && set VITE_SKIP_NATIVE=true && tsc && vite build",
"preview": "vite preview",
"electron": "cd electron && electron .",
"electron-dev": "concurrently \"npm run dev\" \"wait-on http://localhost:5173 && cd electron && electron .\"",
"electron-build": "npm run build && electron-builder --publish never",
"electron-pack": "npm run build && electron-builder --dir"
},
"dependencies": {
"@headlessui/react": "^2.2.7",
"@heroicons/react": "^2.2.0",
"@types/dompurify": "^3.0.5",
"clsx": "^2.1.1",
"dompurify": "^3.2.6",
"lucide-react": "^0.539.0",
"mammoth": "^1.10.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"tailwind-merge": "^3.3.1"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.12",
"@types/node": "^24.3.0",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"autoprefixer": "^10.4.21",
"concurrently": "^8.2.2",
"electron": "^28.3.3",
"electron-builder": "^24.13.3",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.12",
"typescript": "~5.8.3",
"vite": "^7.0.4",
"wait-on": "^7.2.0"
},
"build": {
"appId": "com.stage.teleprompter.pro",
"productName": "Stage Teleprompter Pro",
"directories": {
"output": "dist-electron"
},
"files": [
"dist/**/*",
"electron/**/*"
],
"mac": {
"category": "public.app-category.productivity",
"target": "dmg",
"icon": "AppIcon.iconset"
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
},
{
"target": "portable",
"arch": [
"x64"
]
}
],
"icon": "icon.ico"
},
"linux": {
"target": "AppImage",
"icon": "AppIcon.iconset/icon_512x512.png"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true
}
}
}