-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.09 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
{
"name": "ttsreader",
"version": "1.0.27",
"description": "Text to Speech wrapper, player and helpers for the web-speech-api speech synthesis",
"main": "index.js",
"scripts": {
"test": "node test.js",
"build": "mkdir build; browserify browserify.js > build/bundle.js; terser build/bundle.js -c drop_console=true > build/bundle.min.js;",
"prepublishOnly": "mkdir build; browserify browserify.js > build/bundle.js; terser build/bundle.js -c drop_console=true > build/bundle.min.js; git add .; npm version patch -m \"Release %s\" -f; git push;"
},
"author": "Ronen Rabinovici",
"license": "UNLICENSED",
"private": false,
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RonenR/ttsreader.git"
},
"keywords": [
"tts",
"ttsreader",
"text to speech",
"web speech api",
"text player",
"text reader",
"speech synthesis"
],
"bugs": {
"url": "https://github.com/RonenR/ttsreader/issues"
},
"homepage": "https://ttsreader.com/"
}