@vonage/voice
Version:
The Voice API lets you create outbound calls, control in-progress calls and get information about historical calls.
72 lines (71 loc) • 2.1 kB
JSON
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@vonage/voice",
"version": "1.20.3",
"description": "The Voice API lets you create outbound calls, control in-progress calls and get information about historical calls.",
"keywords": [
"vonage",
"voice"
],
"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": {
"@types/debug": "4.1.12",
"@vonage/server-client": "1.19.3",
"@vonage/vetch": "1.10.3",
"debug": "4.4.3",
"ts-xor": "1.3.0"
},
"engines": {
"node": ">=20"
},
"engineStrict": true,
"publishConfig": {
"directory": "dist"
}
}