This commit is contained in:
Egor 2026-01-16 00:08:43 -08:00
parent e633d6f29c
commit 2e4bc143af
2 changed files with 5 additions and 5 deletions

1
.gitignore vendored
View file

@ -2,6 +2,7 @@ node_modules/
signal-cli
.env
sup-server
sup-proton-bridge
android/.gradle
android/local.properties

View file

@ -10,10 +10,9 @@
"chalk": "^5.6.2"
},
"scripts": {
"dev": "bun --watch src/server.ts",
"start": "bun run src/server.ts",
"build": "bun build --compile src/server.ts --outfile sup-server",
"check": "tsc --noEmit",
"postinstall": "bun run ../scripts/install-signal-cli.ts"
"dev": "bun --watch index.ts",
"start": "bun run index.ts",
"build": "bun build --compile index.ts --outfile sup-server",
"check": "tsc --noEmit"
}
}