UNPKG

@vonage/video

Version:

Package to interact with the Vonage Video API (Not OpenTok Compatible)

75 lines (74 loc) 2.12 kB
{ "$schema": "https://json.schemastore.org/package.json", "name": "@vonage/video", "version": "1.27.3", "description": "Package to interact with the Vonage Video API (Not OpenTok Compatible)", "keywords": [ "vonage", "video" ], "homepage": "https://developer.vonage.com", "bugs": { "url": "https://github.com/Vonage/vonage-node-sdk/issues" }, "repository": { "type": "git", "url": "git+https://github.com/Vonage/vonage-node-sdk.git" }, "license": "Apache-2.0", "contributors": [ { "name": "Chris Tankersley", "url": "https://github.com/dragonmantank" }, { "name": "Chuck \"MANCHUCK\" Reeves", "url": "https://github.com/manchuck" } ], "type": "commonjs", "exports": { ".": { "browser": "./dist/unsupportedBrowser.cjs", "import": { "types": "./dist/esm/index.d.mts", "default": "./dist/esm/index.mjs" }, "require": { "types": "./dist/cjs/index.d.ts", "default": "./dist/cjs/index.js" } } }, "main": "./dist/cjs/index.js", "module": "./dist/esm/index.mjs", "types": "./dist/cjs/index.d.ts", "files": [ "dist" ], "scripts": { "build": "npm run clean && npm run build:esm && npm run build:cjs", "postbuild": "node ../../scripts/copyUnsupported.cjs && node -e \"const fs=require('node:fs'),p='dist/cjs/package.json';fs.mkdirSync('dist/cjs',{recursive:true});fs.writeFileSync(p,JSON.stringify({type:'commonjs'},null,2));\"", "build:cjs": "tsup lib/** -d dist/cjs --dts --tsconfig tsconfig.tsup.json", "build:esm": "tsup lib/** -d dist/esm --format=esm --dts --tsconfig tsconfig.tsup.json", "check:pkg": "npx attw --pack .", "clean": "rimraf dist tsconfig.tsbuildinfo" }, "dependencies": { "@vonage/auth": "1.14.3", "@vonage/jwt": "1.13.3", "@vonage/server-client": "1.19.3", "@vonage/vetch": "1.10.3" }, "devDependencies": { "jsonwebtoken": "9.0.3", "nock": "14.0.10" }, "engines": { "node": ">=20" }, "engineStrict": true, "publishConfig": { "directory": "dist" } }