@ipcom/asterisk-ari
Version:
JavaScript client for Asterisk REST Interface.
73 lines (72 loc) • 1.73 kB
JSON
{
"name": "@ipcom/asterisk-ari",
"version": "1.0.0",
"type": "module",
"description": "JavaScript client for Asterisk REST Interface.",
"homepage": "https://github.com/fabiotheo/ipcom-ari",
"keywords": [
"Asterisk",
"ARI",
"Node.js",
"TypeScript"
],
"types": "./dist/types/index.d.ts",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.js",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"build": "node build.js",
"prepublishOnly": "npm run build",
"start": "node dist/esm/index.js",
"docs": "typedoc && touch docs/.nojekyll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fabiotheo/ipcom-ari.git"
},
"bugs": {
"url": "https://ipcom.com.br",
"email": "suporte@ipcom.com.br"
},
"license": "Apache-2.0",
"author": "Fábio Fernandes Theodoro",
"dependencies": {
"@types/ws": "^8.5.13",
"axios": "^1.13.6",
"exponential-backoff": "^3.1.1",
"uuid": "^11.0.3",
"ws": "^8.18.0"
},
"engines": {
"node": ">=20"
},
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/cjs/index.cjs",
"import": "./dist/esm/index.js",
"default": "./dist/esm/index.js"
}
},
"files": [
"dist"
],
"devDependencies": {
"@eslint/js": "^9.28.0",
"@types/uuid": "^10.0.0",
"esbuild": "^0.27.3",
"eslint": "^9.28.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.1",
"globals": "^16.2.0",
"prettier": "3.5.3",
"typedoc": "^0.26.11",
"typescript": "5.6",
"typescript-eslint": "^8.33.1",
"vitest": "^4.0.18"
},
"publishConfig": {
"access": "public"
}
}