UNPKG

camstreamerlib

Version:

Helper library for CamStreamer ACAP applications.

94 lines (93 loc) 3.08 kB
{ "name": "camstreamerlib", "version": "4.0.0-beta.63", "description": "Helper library for CamStreamer ACAP applications.", "prettier": "@camstreamer/prettier-config", "engine": { "node": ">=18.0.0" }, "dependencies": { "adm-zip": "^0.5.9", "eventemitter2": "^5.0.1", "fast-xml-parser": "^5.2.5", "lodash": "^4.17.21", "type-fest": "^4.41.0", "undici": "^6.21.3", "ws": "^8.18.0", "zod": "^3.25.76" }, "devDependencies": { "@camstreamer/eslint-config": "^1.0.2", "@camstreamer/prettier-config": "^2.0.4", "@types/adm-zip": "^0.5.5", "@types/jest": "^28.0.0", "@types/lodash": "^4.17.18", "@types/node": "^18.19.127", "@types/ws": "^8.5.10", "@typescript-eslint/eslint-plugin": "^6.8.0", "@typescript-eslint/parser": "^6.8.0", "eslint": "^8.51.0", "eslint-plugin-deprecation": "^2.0.0", "eslint-plugin-unused-imports": "^3.0.0", "jest": "^28.1.3", "npm-run-all": "^4.1.5", "prettier": "^2.7.1", "ts-jest": "^28.0.0", "ts-node": "^10.7.0", "typescript": "5.3.3" }, "scripts": { "clean": "rimraf dist/*", "build": "npm-run-all clean build:cjs build:esm copyPackage", "build:cjs": "tsc --project tsconfig.cjs.json", "build:esm": "tsc --project tsconfig.esm.json", "copyPackage": "cp -f LICENSE dist/ && cp -f README.md dist/ && cp -f package.json dist/", "lint": "eslint \"src/**/*.ts\"", "lint:fix": "eslint \"src/**/*.ts\" --fix", "pretty": "prettier --write \"./{{src,doc}/**/*.{ts,tsx,md},README.md}\"", "pretty:check": "prettier --check \"./{{src,doc}/**/*.{ts,tsx,md},README.md}\"", "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js", "audit": "npm audit --audit-level=high" }, "files": [ "/**/*.js", "/**/*.ts" ], "main": "./cjs/index.js", "module": "./esm/index.js", "types": "types/index.d.ts", "exports": { ".": { "import": "./esm/index.js", "require": "./cjs/index.js", "types": "./types/index.d.ts" }, "./web": { "import": "./esm/web/index.js", "require": "./cjs/web/index.js", "types": "./types/web/index.d.ts" }, "./node": { "import": "./esm/node/index.js", "require": "./cjs/node/index.js", "types": "./types/node/index.d.ts" } }, "repository": { "type": "git", "url": "git+https://github.com/CamStreamer/CamStreamerLib.git" }, "keywords": [ "CamStreamer", "CamOverlay", "CamScripter", "Camera", "Axis" ], "author": "CamStreamer s.r.o", "license": "ISC", "bugs": { "url": "https://github.com/CamStreamer/CamStreamerLib/issues" }, "homepage": "https://github.com/CamStreamer/CamStreamerLib#readme" }