learning_ai_common_plat/packages/event-store/package.json

25 lines
576 B
JSON

{
"name": "@bytelyst/event-store",
"version": "0.1.0",
"description": "Persistent event store with pluggable backends (in-memory, file, Cosmos) for ByteLyst product backends",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "vitest run --pool forks"
},
"publishConfig": {
"registry": "https://gitea.bytelyst.com/api/packages/ByteLyst/npm/"
}
}