UNPKG

@tapsioss/client-socket-manager

Version:
62 lines 1.36 kB
{ "name": "@tapsioss/client-socket-manager", "version": "0.7.0", "type": "module", "main": "./dist/index.cjs", "module": "./dist/index.js", "types": "./dist/index.d.ts", "files": [ "./dist", "README.md", "LICENSE" ], "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/index.cjs" } }, "keywords": [ "web-socket", "socket-io.client", "client-socket-manager" ], "repository": { "type": "git", "url": "git+https://github.com/Tap30/client-socket-manager.git", "directory": "packages/core" }, "bugs": { "url": "https://github.com/Tap30/client-socket-manager/issues" }, "wireit": { "build": { "command": "tsup", "files": [ "./tsconfig.json", "./tsup.config.ts", "./src/**/*", "!./src/**/*.test.{ts,tsx}" ], "output": [ "./dist/**/*", "./dist/**/*.tsbuildinfo" ] } }, "devDependencies": { "@repo/test-helpers": "0.0.0" }, "peerDependencies": { "socket.io-client": "^4.8.1" }, "scripts": { "clear": "shx rm -rf dist", "test": "vitest run", "test:dev": "vitest", "prebuild": "pnpm run clear", "build": "wireit", "release": "pnpm publish . --tag latest --access public --no-git-checks" } }