-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
49 lines (49 loc) · 1.65 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
{
"name": "@linto-ai/webvoicesdk",
"version": "1.2.5",
"description": "Building blocks for voice-enabled applications in the browser",
"author": "Damien Laine - LINAGORA",
"keywords": [
"speech-recognition",
"wake-word-detection",
"hotword",
"machine-learning",
"voice-commands",
"voice-activity-detection",
"voice-control",
"record-audio",
"voice-assistant",
"offline-speech-recognition",
"mfcc",
"features-exctraction"
],
"main": "src/webvoicesdk.js",
"module": "src/webvoicesdk.js",
"browser": "dist/webVoiceSDK-linto.min.js",
"scripts": {
"build": "parcel build src/webvoicesdk.js --log-level 4 --no-cache --no-source-maps --detailed-report --out-file webVoiceSDK-linto.min.js",
"test": "parcel tests/with-bundler/index.html --out-dir dev-build --log-level 4 --no-cache"
},
"repository": {
"type": "git",
"url": "git+https://github.com/linto-ai/WebVoiceSDK.git"
},
"license": "AGPLV3",
"bugs": {
"url": "https://github.com/linto-ai/WebVoiceSDK/issues"
},
"homepage": "https://github.com/linto-ai/WebVoiceSDK#readme",
"devDependencies": {
"@tensorflow/tfjs": "^3.21.0",
"@tensorflow/tfjs-backend-cpu": "^3.21.0",
"@tensorflow/tfjs-backend-wasm": "^3.21.0",
"@tensorflow/tfjs-backend-webgl": "^3.21.0",
"parcel-bundler": "^1.12.5",
"parcel-plugin-tensorflowjs-blob": "^1.0.0",
"parcel-plugin-wasm-blob": "^1.0.0",
"parcel-plugin-worker-blob": "^1.0.0"
},
"browserslist": [
"since 2017-06"
]
}