70 lines
1.7 KiB
JSON
70 lines
1.7 KiB
JSON
{
|
|
"name": "sim-shared",
|
|
"type": "module",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"exports": {
|
|
"./aplication/*.js": {
|
|
"types": "./aplication/*.ts",
|
|
"default": "./aplication/*.js"
|
|
},
|
|
"./aplication/*": {
|
|
"types": "./aplication/*.ts",
|
|
"default": "./aplication/*.js"
|
|
},
|
|
"./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": "node --import tsx --test ./**/*.test.ts",
|
|
"dev": "echo \" Shared no es un modulo ejecutable \" ",
|
|
"build": "tsc --build && tsc-alias -p tsconfig.json && cp package.json ../../dist/packages/sim-shared/",
|
|
"build:prod": "yarn build"
|
|
},
|
|
"author": "",
|
|
"license": "ISC",
|
|
"packageManager": "yarn@4.12.0",
|
|
"dependencies": {
|
|
"@tsconfig/node22": "*",
|
|
"amqplib": "^0.10.9",
|
|
"cors": "*",
|
|
"dotenv": "*",
|
|
"express": "*",
|
|
"typescript": "*"
|
|
},
|
|
"devDependencies": {
|
|
"@types/amqplib": "^0.10.8",
|
|
"@types/cors": "*",
|
|
"@types/express": "*",
|
|
"@types/node": "*",
|
|
"@types/supertest": "*",
|
|
"prettier": "*",
|
|
"supertest": "*",
|
|
"tsc-alias": "^1.8.16",
|
|
"tsx": "*",
|
|
"vitest": "*"
|
|
}
|
|
}
|