-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
70 lines (70 loc) · 2.27 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
{
"name": "@symblai/symbl-web-sdk",
"version": "1.0.14",
"description": "Symbl.ai Web SDK for accessing Symbl.ai APIs directly from the web browser.",
"homepage": "https://github.com/symblai/symbl-web-sdk",
"repository": {
"type": "git",
"url": "https://github.com/symblai/symbl-web-sdk.git"
},
"keywords": [
"symbl.ai",
"symbl",
"javascript",
"api",
"web",
"sdk"
],
"main": "./build/index.js",
"types": "./build/index.d.ts",
"devDependencies": {
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"@types/jest": "^26.0.24",
"@types/node": "^16.11.29",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"audio-context-mock": "^0.1.3",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-replace-ts-export-assignment": "0.0.2",
"babel-preset-es2015": "^6.24.1",
"dotenv": "^16.0.0",
"eslint": "^7.32.0",
"jest": "^27.5.1",
"jest-fetch-mock": "^3.0.3",
"jsdom": "^16.6.0",
"standardized-audio-context-mock": "^9.2.0",
"ts-jest": "^27.1.3",
"ts-loader": "^9.2.3",
"ts-node": "^10.1.0",
"tsc-watch": "^4.4.0",
"typedoc": "^0.22.15",
"typescript": "^4.3.5",
"uglifyjs-folder": "^3.1.2",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-node-externals": "^1.7.2"
},
"scripts": {
"watch": "tsc-watch --onSuccess \"npm run build\"",
"test": "jest --silent tests --env=jsdom",
"test-verbose": "jest --verbose tests --env=jsdom",
"lint": "eslint src --quiet",
"doc": "typedoc src",
"build:ts": "rm -rf ./build ./types && tsc",
"build:minify": "uglifyjs-folder -x .js build -eo build",
"build": "npm run build:ts && npm run build:minify && webpack --config webpack.config.js --mode production",
"publish-next": "npm install && npm run build && npm publish --access public --tag next",
"publish-beta": "npm install && npm run build && npm publish --access public --tag beta",
"publish-prod": "npm install && npm run build && npm publish --access public"
},
"author": "",
"license": "Apache 2.0",
"dependencies": {
"@symblai/symbl-js": "1.4.10",
"loglevel": "^1.8.0",
"symbl-opus-encdec": "^0.1.2",
"uuid": "^8.3.2"
}
}