nano-service/package.json

27 lines
531 B
JSON
Raw Normal View History

2024-01-30 21:50:19 +01:00
{
2024-05-27 19:59:18 +02:00
"name": "@qpismont/nano-service",
"version": "0.0.3",
"module": "index.ts",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": ["/dist"],
"scripts": {
"ci": "biome ci . --error-on-warnings",
"test": "bun test",
"build": "tsc --project tsconfig.build.json"
},
"devDependencies": {
"@biomejs/biome": "1.7.3",
"@types/bun": "latest",
"typescript": "^5.0.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"nats": "^2.26.0",
"zod": "^3.23.8"
}
2024-01-30 21:50:19 +01:00
}