This repository was archived by the owner on Jan 7, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.51 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.51 KB
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
{
"name": "@speechly/speech-recognition-polyfill",
"version": "1.3.0",
"description": "Polyfill for the Speech Recognition API using Speechly",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"keywords": [
"client",
"voice",
"speech",
"slu",
"spoken language understanding",
"speechly",
"asr",
"nlp",
"natural language processing",
"nlu",
"natural language understanding",
"natural language",
"vui",
"voice ui",
"voice user interface",
"multimodal",
"speech recognition"
],
"scripts": {
"lint": "eslint 'src/**/*.{ts,tsx}'",
"set-app-id": "echo \"REACT_APP_APP_ID=${APP_ID}\" > test-harness/.env.local",
"update-test-harness": "tsc && cp -R dist/ test-harness/src/SpeechlySpeechRecognition",
"run-test-harness": "cd test-harness && npm i && npm start",
"dev": "npm-watch update-test-harness & npm run update-test-harness && npm run run-test-harness",
"test": "jest --config ./jest.config.js",
"test:watch": "jest --watch --config ./jest.config.js",
"docs": "typedoc --readme none --gitRevision HEAD src/index.ts",
"api-extractor": "tsc && api-extractor run --local --verbose",
"prepublishOnly": "tsc && api-extractor run --verbose",
"prepare": "husky install"
},
"watch": {
"update-test-harness": {
"patterns": ["src"],
"extensions": "ts"
}
},
"files": ["dist"],
"repository": {
"type": "git",
"url": "git+https://github.com/speechly/speech-recognition-polyfill.git"
},
"bugs": {
"url": "https://github.com/speechly/speech-recognition-polyfill/issues"
},
"author": "Speechly",
"license": "MIT",
"devDependencies": {
"@microsoft/api-extractor": "^7.15.0",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-tsdoc": "^0.2.17",
"husky": "^8.0.3",
"jest": "^26.6.3",
"npm-watch": "^0.11.0",
"prettier": "^2.8.6",
"ts-jest": "^26.5.5",
"typedoc": "^0.23.28",
"typedoc-plugin-markdown": "^3.14.0",
"typescript": "^4.9.4"
},
"dependencies": {
"@speechly/browser-client": "^2.6.5"
},
"publishConfig": {
"access": "public"
}
}