-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add new modules for patch, cli, and shard
- Loading branch information
Showing
20 changed files
with
128 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,72 +1,28 @@ | ||
{ | ||
"name": "rusty-motors", | ||
"version": "0.5.0", | ||
"description": "This is a game server, being written from scratch, for a very old and long dead game. The owners of said game have shown no interest in bringing it back, but even so all names of their IP have been avoided to prevent issues.", | ||
"type": "module", | ||
"scripts": { | ||
"check": "tsc", | ||
"lint": "eslint .", | ||
"start": "node --loader=ts-node/esm --env-file=.env --openssl-legacy-provider apps/main/server.ts", | ||
"format": "pnpm prettier --write .", | ||
"test": "vitest run --coverage packages" | ||
}, | ||
"author": "Molly Crendraven <[email protected]>", | ||
"license": "AGPL-3.0", | ||
"private": true, | ||
"repository": { | ||
"type": "git", | ||
"url": "[email protected]:drazisil/mcos.git" | ||
}, | ||
"devDependencies": { | ||
"@eslint/js": "^9.2.0", | ||
"@sentry/node": "7.113.0", | ||
"@sentry/profiling-node": "7.113.0", | ||
"@types/node": "20.12.11", | ||
"@types/pg": "8.11.6", | ||
"@vitest/coverage-v8": "1.6.0", | ||
"@vitest/ui": "^1.3.1", | ||
"drizzle-kit": "0.20.18", | ||
"eslint": "^8.57.0", | ||
"eslint-config-prettier": "9.1.0", | ||
"eslint-plugin-prettier": "5.1.3", | ||
"npm-run-all2": "6.1.2", | ||
"prettier": "3.2.5", | ||
"react-refresh": "^0.10.0", | ||
"typescript": "^5.4.5", | ||
"typescript-eslint": "^7.8.0", | ||
"vite": "~5.0.0", | ||
"vitest": "1.6.0" | ||
}, | ||
"dependencies": { | ||
"@fastify/sensible": "^5.6.0", | ||
"@sentry/esbuild-plugin": "^2.16.1", | ||
"axios": "^1.6.0", | ||
"dotenv": "^16.4.5", | ||
"drizzle-orm": "^0.30.10", | ||
"express": "^4.18.1", | ||
"fastify": "^4.27.0", | ||
"pg": "^8.11.5", | ||
"pino": "^8.21.0", | ||
"pino-pretty": "^11.0.0", | ||
"rusty-motors-database": "^1.0.0", | ||
"rusty-motors-schema": "^1.0.0", | ||
"short-unique-id": "^5.2.0", | ||
"ts-node": "^10.9.2", | ||
"tslib": "^2.3.0", | ||
"tsx": "^4.9.4" | ||
}, | ||
"workspaces": [ | ||
"apps/main", | ||
"packages/cli", | ||
"packages/connection", | ||
"packages/database", | ||
"packages/gateway", | ||
"packages/mcots", | ||
"packages/nps", | ||
"packages/patch", | ||
"packages/shard", | ||
"packages/shared", | ||
"packages/shared-packets", | ||
"schema" | ||
] | ||
"name": "rusty-motors", | ||
"version": "0.5.0", | ||
"author": "Molly Crendraven <[email protected]>", | ||
"repository": { | ||
"type": "git", | ||
"url": "[email protected]:drazisil/mcos.git" | ||
}, | ||
"dependencies": {}, | ||
"description": "This is a game server, being written from scratch, for a very old and long dead game. The owners of said game have shown no interest in bringing it back, but even so all names of their IP have been avoided to prevent issues.", | ||
"license": "AGPL-3.0", | ||
"private": true, | ||
"scripts": {}, | ||
"type": "module", | ||
"workspaces": [ | ||
"apps/main", | ||
"packages/cli", | ||
"packages/connection", | ||
"packages/database", | ||
"packages/gateway", | ||
"packages/mcots", | ||
"packages/nps", | ||
"packages/patch", | ||
"packages/shard", | ||
"packages/shared", | ||
"packages/shared-packets", | ||
"schema" ] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { describe, expect, it } from "vitest"; | ||
|
||
describe("example", () => { | ||
it("should pass", () => { | ||
expect(true).toBe(true); | ||
}); | ||
}); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { describe, expect, it } from "vitest"; | ||
|
||
describe("example", () => { | ||
it("should pass", () => { | ||
expect(true).toBe(true); | ||
}); | ||
}); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { describe, expect, it } from "vitest"; | ||
|
||
describe("example", () => { | ||
it("should pass", () => { | ||
expect(true).toBe(true); | ||
}); | ||
}); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { describe, expect, it } from "vitest"; | ||
|
||
describe("example", () => { | ||
it("should pass", () => { | ||
expect(true).toBe(true); | ||
}); | ||
}); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { describe, expect, it } from "vitest"; | ||
|
||
describe("example", () => { | ||
it("should pass", () => { | ||
expect(true).toBe(true); | ||
}); | ||
}); | ||
|