nano-service/package.json
2024-03-20 20:21:35 +01:00

26 lines
531 B
JSON

{
"name": "@qpismont/nano-service",
"version": "0.0.1",
"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.6.1",
"@types/bun": "latest",
"typescript": "^5.0.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"nats": "^2.19.0",
"zod": "^3.22.4"
}
}