zoom-video-sdk-api-wrapper
Version:
A convenient wrapper for the Zoom Video SDK API
77 lines (76 loc) • 1.98 kB
JSON
{
"name": "zoom-video-sdk-api-wrapper",
"version": "1.2.12",
"description": "A convenient wrapper for the Zoom Video SDK API",
"scripts": {
"start": "cross-env NODE_ENV=production node ./dist/main.js",
"type": "tsc --noEmit",
"lint": "pnpm biome check --apply ./src",
"fmt": "pnpm biome format --write ./src",
"biomeup": "zx ./updateBiome.mjs",
"build": "packemon build",
"pack": "packemon pack --addEngines --addFiles --addExports --declaration",
"esb": "esbuild ./src/index.ts --bundle --platform=node --outfile=./dist/main.js",
"bb": "tsup src/index.ts --dts --sourcemap --format esm,cjs --splitting --minify --treeshake",
"patch": "npm run bb && npm version patch && npm publish"
},
"keywords": [
"zoom",
"video",
"sdk",
"api"
],
"author": "KATO Yuumin <araera111@gmail.com>",
"bugs": {
"url": "https://github.com/araera111/zoom-video-sdk-api-wrapper/issues"
},
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@types/jsrsasign": "^10.5.14",
"@types/node": "^20.14.2",
"esbuild": "^0.21.5",
"packemon": "^4.1.1",
"ts-patch": "^3.2.0",
"tsup": "^8.1.0",
"tsx": "^4.15.4",
"typescript": "^5.4.2",
"vitest": "^1.6.0"
},
"volta": {
"node": "20.9.0",
"npm": "9.8.1"
},
"dependencies": {
"@types/ramda": "^0.30.0",
"dayjs": "^1.11.11",
"immer": "^10.1.1",
"jsrsasign": "^11.1.0",
"ramda": "^0.30.1",
"remeda": "^2.0.10",
"url-join-dual": "5.1.1",
"wretch": "^2.9.0",
"zod": "^3.23.8"
},
"tsup": {
"entry": [
"src/index.ts"
],
"splitting": false,
"sourcemap": true,
"clean": true
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist"
]
}