{ "name": "@discordeno/gateway", "version": "19.0.0-alpha.1", "main": "./dist/esm/index.js", "exports": { "import": "./dist/esm/index.js", "require": "./dist/cjs/index.cjs", "types": "./dist/types/index.d.ts" }, "types": "./dist/types/index.d.ts", "type": "module", "license": "Apache-2.0", "repository": { "type": "git", "url": "https://github.com/discordeno/discordeno.git" }, "scripts": { "build": "swc src --strip-leading-paths --delete-dir-on-start src --out-dir dist/esm && swc --strip-leading-paths --delete-dir-on-start src --out-dir dist/cjs -C module.type=commonjs && node ../../scripts/fixCjsExtension.js", "build:type": "tsc --declaration --emitDeclarationOnly --declarationDir dist/types", "release-build": "yarn build && yarn build:type", "fmt": "biome format --write", "lint": "biome lint --write", "test:unit-coverage": "c8 mocha --no-warnings 'tests/unit/**/*.spec.ts'", "test:unit": "c8 --r lcov mocha --no-warnings 'tests/unit/**/*.spec.ts' && node ../../scripts/coveragePathFixing.js gateway", "test:deno-unit": "swc --strip-leading-paths tests --delete-dir-on-start --out-dir denoTestsDist && node ../../scripts/fixDenoTestExtension.js && deno test -A --import-map ../../denoImportMap.json denoTestsDist/unit", "test:unit:watch": "mocha --no-warnings --watch --parallel 'tests/unit/**/*.spec.ts'", "test:integration": "c8 --r lcov mocha --no-warnings 'tests/integration/**/*.spec.ts' && node ../../scripts/coveragePathFixing.js gateway", "test:type": "tsc --noEmit", "test:test-type": "tsc --project tests/tsconfig.json" }, "dependencies": { "@discordeno/types": "19.0.0-beta.1", "@discordeno/utils": "19.0.0-beta.1", "ws": "^8.18.0" }, "devDependencies": { "@biomejs/biome": "^1.8.3", "@swc/cli": "^0.4.0", "@swc/core": "^1.4.2", "@types/chai": "^4.3.16", "@types/mocha": "^10.0.7", "@types/node": "^20.14.10", "@types/sinon": "^17.0.3", "@types/ws": "^8.5.10", "c8": "^9.1.0", "chai": "^5.1.1", "mocha": "^10.5.1", "sinon": "^18.0.0", "ts-node": "^10.9.2", "tsconfig": "*", "typescript": "^5.5.3", "uWebSockets.js": "https://github.com/uNetworking/uWebSockets.js.git#commit=42c9c0d5d31f46ca4115dc75672b0037ec970f28" } }