-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 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
50
51
52
53
54
55
56
{
"name": "@4players/odin",
"version": "0.19.1",
"description": "A cross-platform SDK enabling developers to integrate real-time VoIP chat technology into their projects",
"author": "Josho Bleicker <[email protected]> (https://www.4players.io)",
"homepage": "https://www.4players.io",
"repository": {
"type": "git",
"url": "https://github.com/4Players/odin-sdk-web.git"
},
"keywords": [
"audio",
"odin",
"sdk",
"opus",
"client",
"rtc",
"voice",
"voip"
],
"private": false,
"license": "ISC",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/index.d.js",
"scripts": {
"build": "tsc -b ./tsconfig.cjs.json ./tsconfig.esm.json",
"bundle": "npm run build && rollup --config --configPlugin typescript && terser dist/odin.js -c -f comments=false -o dist/odin.min.js",
"docs": "typedoc src/index.ts --json docs/api.json --excludeExternals --excludePrivate",
"lint": "eslint . --ext .ts"
},
"engines": {
"node": ">=14"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.2.0",
"@rollup/plugin-typescript": "^11.1.0",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.50.0",
"eslint-config-semistandard": "^17.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.0",
"rollup": "^3.29.0",
"terser": "^5.22.0",
"ts-node": "^10.9.0",
"tslib": "^2.6.0",
"typedoc": "^0.23.0",
"typescript": "^4.9.0"
},
"dependencies": {
"msgpackr": "^1.9.0"
}
}