diff --git a/api/package.json b/api/package.json
index 37721728..eb833417 100644
--- a/api/package.json
+++ b/api/package.json
@@ -2,15 +2,15 @@
"name": "@fosscord/api",
"version": "1.0.0",
"description": "This repository contains the HTTP API Server",
- "main": "dist/Server.js",
- "types": "dist/Server.d.ts",
+ "main": "dist/index.js",
+ "types": "src/index.ts",
"scripts": {
"test:only": "jest --coverage --verbose --forceExit ./tests",
"test:routes": "jest --coverage --verbose --forceExit ./routes.test.ts",
"test": "npm run build && npm run test:only",
"test:watch": "jest --watch",
"start": "npm run build && node dist/start",
- "build": "npx tsc -b .",
+ "build": "npx swc src --out-dir dist",
"build-docker": "tsc -p tsconfig-docker.json",
"dev": "tsnd --respawn src/start.ts",
"patch": "ts-patch install -s && npx patch-package",
|