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": {
2024-07-31 20:47:07 +02:00
"@biomejs/biome": "1.3.3",
2024-05-27 19:59:18 +02:00
"@types/bun": "latest",
2024-07-31 20:47:07 +02:00
"typescript": "^5.5.4"
2024-05-27 19:59:18 +02:00
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
2024-07-31 20:47:07 +02:00
"nats": "^2.28.2",
2024-05-27 19:59:18 +02:00
"zod": "^3.23.8"
}
2024-01-30 21:50:19 +01:00
}