UNPKG

react-vnc-lib

Version:

A modern, lightweight VNC client library for React, Next.js, Node.js, and Bun with TypeScript support

87 lines (86 loc) 2.08 kB
{ "name": "react-vnc-lib", "version": "1.3.4", "description": "A modern, lightweight VNC client library for React, Next.js, Node.js, and Bun with TypeScript support", "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.js" } }, "files": [ "dist/**/*", "README.md", "LICENSE" ], "scripts": { "build": "tsup src/index.ts --format cjs,esm --dts --clean", "dev": "tsup src/index.ts --format cjs,esm --dts --watch", "test": "jest", "lint": "eslint src/**/*.ts", "lint:fix": "eslint src/**/*.ts --fix", "typecheck": "tsc --noEmit", "prepare": "bun run build", "prepublishOnly": "npm run build" }, "keywords": [ "vnc", "remote-desktop", "react", "nextjs", "typescript", "websocket", "canvas", "bun", "nodejs" ], "author": { "name": "Sepand Y", "email": "sepand_y@yahoo.com", "url": "https://sepand.dev" }, "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/sepandy/react-vnc-lib.git" }, "bugs": { "url": "https://github.com/sepandy/react-vnc-lib/issues" }, "homepage": "https://github.com/sepandy/react-vnc-lib#readme", "peerDependencies": { "react": ">=16.8.0", "react-dom": ">=16.8.0" }, "peerDependenciesMeta": { "react": { "optional": true }, "react-dom": { "optional": true } }, "devDependencies": { "@types/jest": "^29.5.11", "@types/node": "^20.10.6", "@types/react": "^18.2.46", "@types/react-dom": "^18.2.18", "@typescript-eslint/eslint-plugin": "^6.17.0", "@typescript-eslint/parser": "^6.17.0", "eslint": "^8.56.0", "jest": "^29.7.0", "jest-environment-jsdom": "^29.7.0", "react": "^18.2.0", "react-dom": "^18.2.0", "ts-jest": "^29.1.1", "tsup": "^8.0.1", "typescript": "^5.3.3" }, "engines": { "node": ">=16.0.0" } }