-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.14 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.14 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
{
"name": "screen-recorder",
"private": true,
"version": "1.0.0",
"main": "main.js",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"electron:dev": "concurrently \"vite\" \"npx electron .\"",
"electron:build": "tsc && vite build && electron-builder"
},
"dependencies": {
"@ffmpeg/ffmpeg": "^0.12.15",
"@ffmpeg/util": "^0.12.2",
"@reduxjs/toolkit": "^1.9.7",
"gif.js": "^0.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.1.3",
"react-router-dom": "^7.15.1"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@vitejs/plugin-react": "^4.2.1",
"concurrently": "^8.2.2",
"electron": "^28.2.0",
"electron-builder": "^24.9.1",
"sass-embedded": "^1.83.0",
"tsx": "^4.7.0",
"typescript": "^5.2.2",
"vite": "^5.0.8"
},
"build": {
"appId": "com.screenrecorder.app",
"productName": "Screen Recorder",
"files": [
"dist/**/*",
"main.js",
"package.json"
],
"win": {
"target": [
"nsis",
"portable"
]
}
}
}