-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
90 lines (90 loc) · 2.05 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
84
85
86
87
88
89
90
{
"name": "telmi-sync",
"description": "Desktop application for synchronize stories and music with Telmi OS.",
"version": "0.7.3",
"author": {
"name": "Franck ALARY",
"url": "http://dantsu.com/"
},
"license": "MIT",
"homepage": ".",
"main": "public/electron.js",
"type": "module",
"scripts": {
"start": "concurrently \"cross-env BROWSER=none react-scripts start\" \"wait-on http://localhost:3000 && electron .\"",
"build": "react-scripts build && electron-builder --x64"
},
"private": false,
"dependencies": {
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"cross-env": "^7.0.3",
"diskusage": "^1.2.0",
"drivelist": "^11.2.0",
"electron-is-dev": "^3.0.1",
"node-sass": "^9.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"xml2js": "^0.6.2"
},
"devDependencies": {
"concurrently": "^8.2.2",
"electron": "^28.1.4",
"electron-builder": "^24.9.1",
"wait-on": "^7.2.0"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"build": {
"appId": "com.dantsu.telmisync",
"productName": "Telmi Sync",
"mac": {
"extendInfo": {
"NSMicrophoneUsageDescription": "Access to your microphone is needed for record your voice",
"com.apple.security.device.audio-input": true
}
},
"linux": {
"target": [
{
"target": "AppImage"
}
]
},
"extraResources": [
{
"from": "./extraResources/",
"to": "extraResources",
"filter": [
"**/*"
]
}
],
"directories": {
"buildResources": "electron/build",
"output": "electron/dist"
}
},
"publish": [
{
"vPrefixedTagName": false
}
]
}