nano-service/package.json

27 lines
531 B
JSON
Raw Normal View History

2024-01-30 21:50:19 +01:00
{
"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": {
2024-03-20 20:21:35 +01:00
"@biomejs/biome": "1.6.1",
2024-01-30 21:50:19 +01:00
"@types/bun": "latest",
"typescript": "^5.0.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"nats": "^2.19.0",
"zod": "^3.22.4"
}
}