diff --git a/package.json b/package.json
index 6fe303bc..b40459b1 100644
--- a/package.json
+++ b/package.json
@@ -11,7 +11,7 @@
"start": "npm run build && node dist/start",
"build": "tsc -b .",
"dev": "tsnd --respawn src/start.ts",
- "bundle": "pkg package.json"
+ "bundle": "npm run build && pkg package.json"
},
"pkg": {
"scripts": [
@@ -22,8 +22,11 @@
"assets"
],
"targets": [
- "latest-win-x64"
- ]
+ "latest-linux-x64",
+ "latest-win-x64",
+ "latest-macos-x64"
+ ],
+ "outputPath": "build"
},
"repository": {
"type": "git",
@@ -43,7 +46,7 @@
},
"homepage": "https://github.com/fosscord/fosscord-api#readme",
"dependencies": {
- "@fosscord/server-util": "^1.3.26",
+ "@fosscord/server-util": "^1.3.29",
"@types/jest": "^26.0.22",
"@types/json-schema": "^7.0.7",
"ajv": "^8.4.0",
@@ -85,6 +88,7 @@
"0x": "^4.10.2",
"jest": "^26.6.3",
"pkg": "^5.3.0",
+ "saslprep": "^1.0.3",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.6",
"typescript": "^4.1.2"
|