feat(shared): reworked shared library

Shared library is now access using `@shared/module`
This commit is contained in:
maix0 2025-06-16 23:16:34 +02:00 committed by Maieul BOYER
parent 1bc33ab912
commit 37403d304a
56 changed files with 366 additions and 970 deletions

29
src/utils/package.json Normal file
View file

@ -0,0 +1,29 @@
{
"type": "module",
"name": "utils",
"version": "1.0.0",
"description": "utils library",
"scripts": {
"build:ts": "tsc -d",
"watch:ts": "tsc -d -w"
},
"exports": {
".": "./dist/auth.js"
},
"main": "./dist/auth.js",
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"fastify": "^5.0.0",
"fastify-plugin": "^5.0.0"
},
"devDependencies": {
"@types/node": "^22.1.0",
"c8": "^10.1.2",
"concurrently": "^9.0.0",
"fastify-tsconfig": "^3.0.0",
"ts-node": "^10.4.0",
"typescript": "~5.8.2"
}
}