-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
120 lines (120 loc) · 2.98 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "text-to-speech",
"version": "0.1.0",
"description": "A electron js based app to convert text to speech",
"private": true,
"author": {
"name": "Gokulakannan T",
"email": "[email protected]",
"url": "https://gokulakannant.github.io"
},
"homepage": "./",
"main": "public/electron.js",
"license": "GPLv3",
"repository": {
"type": "git",
"url": "https://github.com/gokulakannant/text-to-speech.git"
},
"keywords": [
"text to speech",
"text",
"speech"
],
"scripts": {
"start": "rescripts start",
"build": "rescripts build",
"dev": "concurrently \"yarn start\" \"wait-on http://localhost:3000 && electron --enable-speech-dispatcher .\"",
"postinstall": "electron-builder install-app-deps",
"preelectron-pack": "yarn build",
"electron-pack": "electron-builder build"
},
"dependencies": {
"@material-ui/core": "^4.9.1",
"@material-ui/icons": "^4.9.1",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"electron-dev": "^1.0.1",
"electron-is-dev": "^1.1.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-scripts": "3.3.1"
},
"devDependencies": {
"@rescripts/cli": "^0.0.13",
"@rescripts/rescript-env": "^0.0.11",
"concurrently": "^5.1.0",
"electron": "^4.0.6",
"electron-builder": "^20.38.5",
"fibers": "^4.0.2",
"node-sass": "^4.13.1",
"sass": "^1.25.0",
"typescript": "^3.7.5",
"wait-on": "^4.0.0"
},
"build": {
"productName": "Text To Speech",
"artifactName": "TextToSpeech-${version}-${os}-${arch}.${ext}",
"appId": "com.experiment.text-to-speech",
"copyright": "Copyright © 2019 ${author}",
"appImage": {
"systemIntegration": "doNotAsk"
},
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "public"
},
"linux": {
"icon": "public/logo.png",
"asar": true,
"description": "Electon based Text to Speech converter",
"target": [
"AppImage",
"deb"
],
"category": "app.development",
"depends": [
"speech-dispatcher",
"festival"
]
},
"mac": {
"target": "pkg",
"category": "public.app-category.developer-tools",
"icon": "public/logo.ico",
"type": "development"
},
"win": {
"asar": false,
"target": "nsis",
"icon": "public/logo.ico"
},
"nsis": {
"installerIcon": "public/logo.ico",
"installerHeaderIcon": "public/logo.ico",
"deleteAppDataOnUninstall": true
},
"pkg": {
"license": "LICENSE.md",
"isRelocatable": false
}
},
"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"
]
}
}