nano-service/package.json

27 lines
564 B
JSON
Raw Normal View History

2024-01-30 21:50:19 +01:00
{
"name": "@qpismont/nano-service",
"version": "0.0.2",
"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.4",
"@types/bun": "latest",
"typescript": "^5.0.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"nats": "^2.22.0",
"zod": "^3.22.4"
}
2024-01-30 21:50:19 +01:00
}