openvidu/openvidu-browser/package.json

58 lines
2.4 KiB
JSON
Raw Normal View History

{
2023-03-15 23:00:53 +01:00
"author": "OpenVidu",
2018-05-11 10:43:01 +02:00
"dependencies": {
2024-05-21 13:37:12 +02:00
"events": "3.3.0",
2023-03-15 23:00:53 +01:00
"freeice": "2.2.2",
"hark": "1.2.3",
2024-05-21 13:37:12 +02:00
"inherits": "2.0.4",
2023-03-15 23:00:53 +01:00
"jsnlog": "2.30.0",
2025-11-19 14:22:45 +01:00
"mime": "2.6.0",
2023-03-15 23:00:53 +01:00
"platform": "1.3.6",
2025-11-19 14:22:45 +01:00
"semver": "7.7.3",
"uuid": "^8.3.2",
2024-05-21 13:37:12 +02:00
"wolfy87-eventemitter": "5.2.9"
2023-03-15 23:00:53 +01:00
},
"description": "OpenVidu Browser",
2018-05-11 10:43:01 +02:00
"devDependencies": {
2025-11-19 14:22:45 +01:00
"@types/node": "24.10.1",
"@types/platform": "1.3.6",
"@typescript-eslint/eslint-plugin": "8.47.0",
"@typescript-eslint/parser": "8.47.0",
"browserify": "17.0.1",
"eslint": "9.39.1",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import": "2.32.0",
"patch-package": "^8.0.1",
"prettier": "3.6.2",
"terser": "5.44.1",
2023-03-15 23:00:53 +01:00
"tsify": "5.0.4",
2025-11-19 14:22:45 +01:00
"typedoc": "0.28.14",
"typescript": "5.9.3",
"undici-types": "7.16.0"
2023-03-15 23:00:53 +01:00
},
"license": "Apache-2.0",
"main": "lib/index.js",
"name": "openvidu-browser",
2018-05-11 10:43:01 +02:00
"repository": {
2023-03-15 23:00:53 +01:00
"type": "git",
2018-05-11 10:43:01 +02:00
"url": "git://github.com/OpenVidu/openvidu"
2023-03-15 23:00:53 +01:00
},
2018-05-11 10:43:01 +02:00
"scripts": {
2023-03-15 23:00:53 +01:00
"browserify": "VERSION=${VERSION:-dev}; mkdir -p static/js/ && cd src && ../node_modules/browserify/bin/cmd.js Main.ts -p [ tsify ] --exclude kurento-browser-extensions --debug -o ../static/js/openvidu-browser-$VERSION.js -v",
"browserify-prod": "VERSION=${VERSION:-dev}; mkdir -p static/js/ && cd src && ../node_modules/browserify/bin/cmd.js --debug Main.ts -p [ tsify ] --exclude kurento-browser-extensions | ../node_modules/terser/bin/terser --source-map content=inline --output ../static/js/openvidu-browser-$VERSION.min.js",
2025-11-19 14:22:45 +01:00
"build": "npm run lint && npm run beautify && cd src/OpenVidu && ./../../node_modules/typescript/bin/tsc && cd ../.. && ./node_modules/typescript/bin/tsc --declaration src/index.ts --outDir ./lib --sourceMap --target es2015 --module commonjs --moduleResolution node --lib dom,es2015,scripthost && rm -rf ./ts4.4 && mkdir -p ./ts4.4/lib && cp -r ./lib ./ts4.4 && find ./ts4.4/lib -type f ! -iname '*.d.ts' -delete && ./config/replace_for_ts44.sh",
"docs": "./generate-docs.sh",
"lint": "eslint . --ext .ts",
"beautify": "prettier --write ."
2023-03-15 23:00:53 +01:00
},
"types": "lib/index.d.ts",
"typesVersions": {
"<4.4": {
"*": [
"ts4.4/*"
]
}
2023-03-15 23:00:53 +01:00
},
2025-12-04 22:41:34 +01:00
"version": "2.32.0"
2023-03-15 23:00:53 +01:00
}