league service

This commit is contained in:
2025-12-16 00:57:31 +01:00
parent 3b566c973d
commit 775d41e055
130 changed files with 4077 additions and 1036 deletions

23
core/shared/package.json Normal file
View File

@@ -0,0 +1,23 @@
{
"name": "@gridpilot/shared",
"version": "0.1.0",
"main": "./index.ts",
"types": "./index.ts",
"type": "module",
"exports": {
".": "./index.ts",
"./logging": "./logging/index.ts",
"./logging/*": "./logging/*",
"./application": "./application/index.ts",
"./application/*": "./application/*",
"./domain": "./domain/index.ts",
"./domain/*": "./domain/*",
"./errors": "./errors/index.ts",
"./errors/*": "./errors/*",
"./presentation": "./presentation/index.ts",
"./presentation/*": "./presentation/*",
"./result": "./result/index.ts",
"./result/*": "./result/*"
},
"dependencies": {}
}