2025-09-08 16:04:58 -04:00
|
|
|
{
|
2025-09-08 19:22:50 -04:00
|
|
|
"name": "securebit-chat",
|
2025-09-08 16:04:58 -04:00
|
|
|
"version": "1.0.0",
|
2025-09-08 19:22:50 -04:00
|
|
|
"description": "Secure P2P Communication Application with End-to-End Encryption",
|
|
|
|
|
"main": "index.html",
|
2025-09-08 16:04:58 -04:00
|
|
|
"scripts": {
|
2025-09-08 19:22:50 -04:00
|
|
|
"build": "npm run build:css && npm run build:js",
|
|
|
|
|
"build:css": "npx tailwindcss -i src/styles/tw-input.css -o assets/tailwind.css --minify --content \"./index.html,./src/**/*.jsx,./src/**/*.js\"",
|
|
|
|
|
"build:js": "npx esbuild src/app.jsx --bundle --format=esm --outfile=dist/app.js --sourcemap && npx esbuild src/scripts/app-boot.js --bundle --format=esm --outfile=dist/app-boot.js --sourcemap && npx esbuild src/scripts/qr-local.js --bundle --format=esm --outfile=dist/qr-local.js --sourcemap",
|
|
|
|
|
"dev": "npm run build && python -m http.server 8000",
|
|
|
|
|
"watch": "npx tailwindcss -i src/styles/tw-input.css -o assets/tailwind.css --watch",
|
|
|
|
|
"serve": "npx http-server -p 8000",
|
2025-09-08 16:04:58 -04:00
|
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
|
|
|
},
|
2025-09-08 19:22:50 -04:00
|
|
|
"keywords": [
|
|
|
|
|
"p2p",
|
|
|
|
|
"chat",
|
|
|
|
|
"encryption",
|
|
|
|
|
"webrtc",
|
|
|
|
|
"lightning",
|
|
|
|
|
"privacy",
|
|
|
|
|
"security"
|
|
|
|
|
],
|
|
|
|
|
"author": "SecureBit Team",
|
|
|
|
|
"license": "MIT",
|
2025-09-08 16:04:58 -04:00
|
|
|
"devDependencies": {
|
2025-09-08 19:22:50 -04:00
|
|
|
"esbuild": "^0.25.9",
|
|
|
|
|
"tailwindcss": "^3.4.17"
|
2025-09-08 16:04:58 -04:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"qrcode": "^1.5.4"
|
|
|
|
|
}
|
|
|
|
|
}
|