{ "name": "bare-discord-js", "version": "0.2.0", "description": "Run official discord.js on Bare with zero end-user extra modules.", "license": "MIT", "type": "commonjs", "main": "./src/index.js", "module": "./src/index.mjs", "exports": { ".": { "bare": "./src/index.js", "require": "./src/index.js", "import": "./src/index.mjs" } }, "files": [ "src", "scripts", "patches", "README.md", "PLAN.md" ], "engines": { "node": ">=20", "bare": ">=1.29.4" }, "scripts": { "postinstall": "node scripts/apply-workspace-patches.mjs", "patch:runtime-deps": "node scripts/apply-workspace-patches.mjs", "sync:imports-map": "node scripts/sync-imports-map.mjs", "analyze": "node scripts/analyze-discordjs-surface.mjs --out artifacts/analysis && node scripts/analyze-bare-surface.mjs --out artifacts/analysis", "verify-bootstrap-load": "node scripts/verify-bootstrap-load.mjs", "pear:prepare": "node scripts/pear-prepare-release.mjs", "generate-patches": "node scripts/generate-patches.mjs --out patches", "apply-patches": "node scripts/apply-patches.mjs --verify", "build": "node scripts/build.mjs", "pack:bare": "node scripts/pack-bare.mjs", "test:parity": "node test/parity.test.mjs", "test:bot:smoke": "node test/smoke-bot.test.mjs", "test:bot:voice": "node test/voice-bot.test.mjs", "test:bare": "bare test/bare-load.test.cjs", "test:bare:rest": "bare test/bare-network.test.cjs", "test:bare:ws": "bare test/bare-ws.test.cjs", "sync:upstream": "node scripts/sync-upstream.mjs", "sync:rebase-patches": "node scripts/sync-rebase-patches.mjs", "release:verify": "node scripts/release-verify.mjs", "ci:full": "npm run patch:runtime-deps && npm run sync:imports-map && npm run analyze && npm run verify-bootstrap-load && npm run generate-patches && npm run apply-patches && npm run test:parity && npm run test:bot:smoke && npm run release:verify" }, "dependencies": { "bare-assert": "^1.2.0", "bare-buffer": "^3.7.0", "bare-console": "^6.2.0", "bare-crypto": "^1.15.3", "bare-diagnostics-channel": "^1.1.0", "bare-encoding": "^1.0.3", "bare-events": "^2.9.1", "bare-fetch": "^3.2.0", "bare-fs": "^4.8.0", "bare-http1": "^4.5.7", "bare-https": "^3.0.0", "bare-module": "^6.4.0", "bare-net": "^2.3.3", "bare-node-runtime": "^1.5.0", "bare-os": "^3.9.3", "bare-pack": "^2.2.1", "bare-path": "^3.1.1", "bare-performance": "^2.1.1", "bare-process": "^4.5.1", "bare-querystring": "^1.1.0", "bare-stream": "^2.13.3", "bare-string-decoder": "^1.0.0", "bare-timers": "^3.2.1", "bare-tls": "^3.1.8", "bare-url": "^2.5.2", "bare-utils": "^1.6.0", "bare-ws": "^3.0.0", "bare-zlib": "^1.4.1", "discord.js": "^14.27.0" }, "overrides": { "ws": "^8.21.3" }, "private": true }