chore: initial commit for @alveojs/common

This commit is contained in:
M1000fr
2026-01-12 12:55:42 +01:00
parent 25c6e46b99
commit 7fb2e3dc88
185 changed files with 464368 additions and 0 deletions

25
package.json Normal file
View File

@@ -0,0 +1,25 @@
{
"name": "@alveojs/common",
"version": "0.0.1",
"description": "Common types, decorators and interfaces for Alveo DI container",
"module": "src/index.ts",
"types": "src/index.ts",
"type": "module",
"private": true,
"peerDependencies": {
"reflect-metadata": "^0.2.2",
"typescript": "^5"
},
"dependencies": {
"reflect-metadata": "^0.2.2"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@types/bun": "latest"
},
"scripts": {
"format": "biome format",
"lint": "biome lint",
"typecheck": "tsc --noEmit"
}
}