Files
sf-sim/packages/sim-shared/package.json

61 lines
1.4 KiB
JSON
Raw Normal View History

2026-01-08 13:36:52 +01:00
{
"name": "sim-shared",
"type": "module",
2026-01-08 13:36:52 +01:00
"version": "1.0.0",
"description": "",
"exports": {
"./infrastructure/*.js": {
"types": "./infrastructure/*.ts",
"default": "./infrastructure/*.js"
},
"./infrastructure/*": {
"types": "./infrastructure/*.ts",
"default": "./infrastructure/*.js"
},
"./domain/*.js": {
"types": "./domain/*.ts",
"default": "./domain/*.js"
},
"./domain/*": {
"types": "./domain/*.ts",
"default": "./domain/*.js"
},
"./ports/*.js": {
"types": "./ports/*.ts",
"default": "./ports/*.js"
},
"./ports/*": {
"types": "./ports/*.ts",
"default": "./ports/*.js"
}
},
"scripts": {
"test": "echo \"Error: no test specified\" ",
"dev": "echo \" Shared no es un modulo ejecutable \" ",
"build": "tsc --build && tsc-alias -p tsconfig.json && cp package.json ../../dist/packages/sim-shared/"
},
"author": "",
"license": "ISC",
"packageManager": "yarn@4.12.0",
2026-01-08 13:36:52 +01:00
"dependencies": {
"@tsconfig/node22": "*",
"amqplib": "^0.10.9",
2026-01-08 13:36:52 +01:00
"cors": "*",
"dotenv": "*",
"express": "*",
"typescript": "*"
},
"devDependencies": {
"@types/amqplib": "^0.10.8",
2026-01-08 13:36:52 +01:00
"@types/cors": "*",
"@types/express": "*",
"@types/node": "*",
"@types/supertest": "*",
"prettier": "*",
"supertest": "*",
2026-01-30 14:53:18 +01:00
"tsc-alias": "^1.8.16",
2026-01-08 13:36:52 +01:00
"tsx": "*",
"vitest": "*"
}
}