Files
common/package.json
M1000fr 5b4da2b23b 1.0.0
2026-01-12 13:26:18 +01:00

40 lines
1022 B
JSON

{
"name": "@alveojs/common",
"version": "1.0.0",
"description": "Common types, decorators and interfaces for Alveo DI container",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"default": "./dist/index.mjs"
}
},
"files": [
"dist"
],
"type": "module",
"private": false,
"peerDependencies": {
"reflect-metadata": "^0.2.2",
"typescript": "^5"
},
"dependencies": {
"reflect-metadata": "^0.2.2"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@types/bun": "latest",
"typescript": "^5.0.0"
},
"scripts": {
"build": "rm -rf dist && bun build ./src/index.ts --outfile ./dist/index.mjs && bun build ./src/index.ts --outfile ./dist/index.js && tsc --project tsconfig.build.json",
"format": "biome format",
"lint": "biome lint",
"typecheck": "tsc --noEmit"
}
}