ba-polyglot-storage/package.json
Alan Bridgeman c658fa3822
All checks were successful
Publish to Private NPM Registry / publish (push) Successful in 27s
Simplified things by removing the PolyglotAdapter decorator
2026-07-21 15:24:44 -05:00

44 lines
1.2 KiB
JSON

{
"name": "@BridgemanAccessible/ba-polyglot-storage",
"version": "1.0.1",
"description": "A shared utility library to support Polyglot Storage implementations",
"repository": "https://git.bridgemanaccessible.ca/Bridgeman-Accessible/ba-polyglot-storage",
"author": "Bridgeman Accessible<info@bridgemanaccessible.ca>",
"license": "MIT",
"type": "module",
"exports": {
"./db": {
"types": "./db/index.d.ts",
"default": "./db/index.js"
},
"./decorators": {
"types": "./decorators/index.d.ts",
"default": "./decorators/index.js"
},
"./nosql": {
"types": "./nosql/index.d.ts",
"default": "./nosql/index.js"
},
"./repos": {
"types": "./repos/index.d.ts",
"default": "./repos/index.js"
},
"./types": {
"types": "./types/index.d.ts",
"default": "./types/index.js"
}
},
"scripts": {
"build": "tsgo"
},
"devDependencies": {
"@types/lodash-es": "^4.17.12",
"@types/node": "^26.1.1",
"@typescript/native-preview": "^7.0.0-dev.20260707.2"
},
"dependencies": {
"@BridgemanAccessible/ba-logging": "^1.0.2",
"lodash-es": "^4.18.1",
"typeorm": "^1.1.0"
}
}