-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.61 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
{
"name": "voice-command-recognizer",
"version": "1.0.8",
"description": "React HOC for voice command recognition. Based on Web Speech API's Speech Recognizer, using Annyang",
"main": "dist/index.js",
"scripts": {
"prepare": "npm run-script build",
"update": "npm version patch -m \"New version ready.\";npm publish",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel src --out-dir dist --extensions \".js,.jsx\" --source-maps inline"
},
"repository": {
"type": "git",
"url": "git+https://github.com/loqtor/voice-command-recognizer.git"
},
"keywords": [
"webspeechapi",
"voicerecognition",
"speechrecognition",
"react",
"speechrecognizer"
],
"author": "Martín Martínez",
"license": "MIT",
"bugs": {
"url": "https://github.com/loqtor/voice-command-recognizer/issues"
},
"homepage": "https://github.com/loqtor/voice-command-recognizer#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/preset-env": "^7.8.6",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"css-loader": "^0.28.11",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"style-loader": "^0.20.3",
"typescript": "^3.8.3"
},
"dependencies": {
"@babel/core": "^7.8.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-syntax-jsx": "^7.8.3",
"@babel/plugin-transform-react-jsx": "^7.8.3",
"@types/annyang": "^2.6.1",
"@types/node": "^13.7.7",
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.5",
"babel-loader": "^8.0.6",
"fuzzyset.js": "0.0.91"
}
}