mirror of
https://github.com/lone-cloud/prism
synced 2026-06-03 08:43:10 -07:00
38 lines
1.2 KiB
JSON
38 lines
1.2 KiB
JSON
{
|
|
"name": "sup",
|
|
"version": "0.1.0",
|
|
"description": "Privacy-preserving push notifications using Signal as transport",
|
|
"module": "server/index.ts",
|
|
"type": "module",
|
|
"private": true,
|
|
"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"
|
|
},
|
|
"scripts": {
|
|
"dev": "bun --watch server/index.ts",
|
|
"start": "bun run server/index.ts",
|
|
"build": "bun build --compile server/index.ts --outfile sup-server",
|
|
"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",
|
|
"android:build": "bun run scripts/test-android-build.ts",
|
|
"android:release": "bun run scripts/release-android.ts",
|
|
"android:deps": "bun run scripts/check-android-deps.ts",
|
|
"android:lockfile": "bun run scripts/update-android-lockfile.ts"
|
|
}
|
|
}
|