Initial code commit
All checks were successful
Publish to Private NPM Registry / publish (push) Successful in 56s
All checks were successful
Publish to Private NPM Registry / publish (push) Successful in 56s
This commit is contained in:
commit
db22585fcb
27 changed files with 2652 additions and 0 deletions
44
package.json
Normal file
44
package.json
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
{
|
||||
"name": "@BridgemanAccessible/ba-polyglot-storage",
|
||||
"version": "1.0.0",
|
||||
"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"
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue