mirror of
https://github.com/spacebarchat/spacebarchat.git
synced 2026-04-12 03:25:42 +00:00
53 lines
1.3 KiB
JSON
53 lines
1.3 KiB
JSON
{
|
|
"name": "build",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "dist/start.js",
|
|
"bin": "dist/start.js",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"build:cdn": "tsc -b node_modules/@fosscord/cdn",
|
|
"build:gateway": "tsc -b node_modules/@fosscord/gateway",
|
|
"build:api": "tsc -b node_modules/@fosscord/api",
|
|
"build": "npm run build:cdn && npm run build:gateway && npm run build:api && tsc -b . ",
|
|
"package": "pkg",
|
|
"start": "npm run build && node dist/start.js"
|
|
},
|
|
"pkg": {
|
|
"scripts": [],
|
|
"assets": [
|
|
"node_modules/@fosscord/**/*",
|
|
"dist/**/*.js"
|
|
],
|
|
"targets": [
|
|
"latest-linux-arm64",
|
|
"latest-linux-x64",
|
|
"latest-win-x64",
|
|
"latest-win-arm64",
|
|
"latest-macos-x64",
|
|
"latest-macos-arm64"
|
|
],
|
|
"outputPath": "build"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"@fosscord/api": "github:fosscord/fosscord-api",
|
|
"@fosscord/cdn": "github:fosscord/fosscord-cdn",
|
|
"@fosscord/gateway": "github:fosscord/fosscord-gateway",
|
|
"@fosscord/server-util": "^1.3.16",
|
|
"mongodb-memory-server": "^6.9.6",
|
|
"mongoose": "^5.12.12"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bcrypt": "^5.0.0",
|
|
"@types/express": "^4.17.12",
|
|
"@types/i18next-node-fs-backend": "^2.1.0",
|
|
"@types/multer": "^1.4.5",
|
|
"@types/node-fetch": "^2.5.10",
|
|
"@types/ws": "^7.4.4",
|
|
"pkg": "^5.2.1"
|
|
}
|
|
}
|