forked from deepgram/deepgram-js-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.76 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
{
"name": "@deepgram/sdk",
"version": "0.0.0-automated",
"description": "Isomorphic Javascript client for Deepgram",
"keywords": [
"javascript",
"typescript",
"deepgram",
"asr",
"speech",
"sdk"
],
"homepage": "https://github.com/deepgram/deepgram-js-sdk",
"bugs": "https://github.com/deepgram/deepgram-js-sdk/issues",
"license": "MIT",
"author": {
"name": "Deepgram DevRel Team",
"email": "[email protected]"
},
"contributors": [
"Brian Barrow",
"Brian Hillis",
"Luke Oliff",
"Michael Jolley",
"Sandra Rodgers",
"Shir Goldberg"
],
"files": [
"dist",
"src"
],
"engines": {
"node": ">=18.0.0"
},
"main": "dist/main/index.js",
"module": "dist/module/index.js",
"types": "dist/module/index.d.ts",
"sideEffects": false,
"repository": "deepgram/deepgram-js-sdk",
"scripts": {
"clean": "rimraf dist docs/v2",
"format": "prettier --write \"{src,test}/**/*.ts\"",
"build": "run-s clean format build:*",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"build:umd": "webpack --mode=production",
"watch": "nodemon -e ts --watch src --exec \"npm run build\"",
"test": "mocha -r ts-node/register test/*test.ts test/**/*test.ts --insect --timeout 5000 || :",
"test:coverage": "nyc --reporter=lcovonly --reporter=text --reporter=text-summary npm run test",
"docs": "typedoc --entryPoints src/index.ts --out docs/v2 --includes src/**/*.ts",
"docs:json": "typedoc --entryPoints src/index.ts --includes src/**/*.ts --json docs/v2/spec.json --excludeExternals"
},
"dependencies": {
"@deepgram/captions": "^1.1.1",
"@types/websocket": "^1.0.9",
"cross-fetch": "^3.1.5",
"deepmerge": "^4.3.1",
"events": "^3.3.0",
"websocket": "^1.0.34"
},
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@faker-js/faker": "^8.0.2",
"@flydotio/dockerfile": "^0.4.10",
"@types/chai": "^4.3.5",
"@types/mocha": "^9.1.1",
"chai": "^4.3.7",
"cross-env": "^7.0.3",
"husky": "^4.3.0",
"mocha": "^9.2.2",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"rimraf": "^3.0.2",
"semantic-release-plugin-update-version-in-files": "^1.1.0",
"ts-loader": "^8.0.11",
"ts-node": "^10.9.1",
"typedoc": "^0.22.16",
"typescript": "^4.5.5",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2"
},
"overrides": {
"es5-ext": "0.10.53"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"jsdelivr": "dist/umd/deepgram.js",
"unpkg": "dist/umd/deepgram.js"
}