UNPKG

webex-wrapper-1

Version:

A Webex wrapper is a TypeScript module that encapsulates event listeners and interaction logic for Webex Contact Center

35 lines 1.03 kB
{ "name": "webex-wrapper-1", "version": "1.0.2", "description": "A Webex wrapper is a TypeScript module that encapsulates event listeners and interaction logic for Webex Contact Center", "keywords": ["webex", "contact-center", "wrapper", "typescript"], "author": "Sharjeel Akram", "license": "MIT", "main": "./dist/webex-wrapper.umd.cjs", "module": "./dist/webex-wrapper.js", "types": "./types/index.d.ts", "type": "module", "exports": { ".": { "import": "./dist/webex-wrapper.js", "require": "./dist/webex-wrapper.umd.cjs" } }, "engines": { "node": ">=14.0.0" }, "files": ["dist", "types"], "scripts": { "dev": "vite --config vite.config.js", "build": "tsc && vite build --config vite.config.js && typedoc src/index.ts types/index.d.ts", "test": "vitest", "build:doc": "typedoc src/index.ts types/index.d.ts" }, "devDependencies": { "jsdom": "^26.1.0", "typedoc": "^0.28.4", "typescript": "^5.8.3", "vite": "^6.3.4", "vitest": "^3.1.3" } }