{ "name": "sup", "version": "0.1.0", "description": "Privacy-preserving push notifications using Signal as transport", "module": "server/index.ts", "author": { "name": "lone-cloud", "email": "lonecloud604@proton.me" }, "license": "AGPL-3.0-or-later", "repository": { "type": "git", "url": "https://github.com/lone-cloud/sup" }, "dependencies": { "chalk": "^5.6.2" }, "devDependencies": { "@biomejs/biome": "^2.3.11", "@types/bun": "^1.3.6", "typescript": "^5.9.3" }, "private": true, "scripts": { "dev": "bun --watch server/index.ts", "build": "bun build --compile server/index.ts --outfile sup-server", "build:android": "bun run scripts/test-android-build.ts", "release:android": "bun run scripts/release-android.ts", "check:deps": "bun run scripts/check-android-deps.ts", "start": "bun run server/index.ts", "check": "biome check . && tsc --noEmit", "fix": "biome check --write . && tsc --noEmit", "postinstall": "bun run scripts/install-signal-cli.ts", "release:docker": "git tag v$(bun -p \"require('./package.json').version\") && git push --tags" }, "type": "module" }