@4players/odin
Version:
A cross-platform SDK enabling developers to integrate real-time VoIP chat technology into their projects
57 lines (56 loc) • 1.69 kB
JSON
{
"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 <josho.bleicker@4players.io> (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"
}
}