-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.01 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
{
"name": "carabiner",
"productName": "Carabiner",
"description": "Screen Capture and Remote Control for Streaming Devices",
"version": "0.3.1",
"private": true,
"main": "public/main.js",
"license": "MIT",
"author": {
"name": "Marcelo Lv Cabral",
"email": "[email protected]",
"url": "https://lvcabral.com/"
},
"copyright": "© 2024-2025, Marcelo Lv Cabral",
"bugs": {
"url": "https://github.com/lvcabral/carabiner/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/lvcabral/carabiner"
},
"dependencies": {
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.4",
"@testing-library/user-event": "^13.5.0",
"auto-launch": "^5.0.6",
"bootstrap": "5.1.3",
"electron-squirrel-startup": "^1.0.0",
"react": "^17.0.2",
"react-bootstrap": "^2.2.1",
"react-dom": "^17.0.2",
"react-scripts": "5.0.0",
"toastify-js": "^1.12.0",
"web-vitals": "^2.1.4"
},
"homepage": "./",
"scripts": {
"start": "react-scripts start",
"forge": "electron-forge start",
"desktop": "electron .",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"package": "electron-forge package",
"make": "electron-forge make",
"make:mac": "npm run make -- --platform=darwin --arch=universal"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@electron-forge/cli": "^7.6.0",
"@electron-forge/maker-deb": "^7.6.0",
"@electron-forge/maker-dmg": "^7.6.0",
"@electron-forge/maker-rpm": "^7.6.0",
"@electron-forge/maker-squirrel": "^7.6.0",
"dotenv": "^16.4.7",
"electron": "^32.0.0"
}
}