socket/package.json
2025-06-28 08:37:34 -04:00

26 lines
640 B
JSON

{
"name": "@endeavorance/socket",
"description": "Self-managed reconnecting WebSocket wrapper",
"version": "0.2.0",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "bun run ./build.ts",
"fmt": "bunx --bun biome check --fix"
},
"keywords": [],
"author": "Endeavorance <hello@endeavorance.camp> (https://endeavorance.camp)",
"license": "CC BY-NC-SA 4.0",
"files": [
"dist"
],
"type": "module",
"devDependencies": {
"@biomejs/biome": "^2.0.6",
"@types/bun": "latest",
"bun-plugin-dts": "^0.2.3"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}