@valkyriestudios/mongo
Version:
MongoDB Adapter Library
71 lines (70 loc) • 2.28 kB
JSON
{
"name": "@valkyriestudios/mongo",
"version": "2.5.0",
"description": "MongoDB Adapter Library",
"scripts": {
"build": "rm -rf ./dist && mkdir ./dist && npm run lint && npm run test && tsc -p ./tsconfig.build.esm.json && tsc -p ./tsconfig.build.cjs.json && tsc -p ./tsconfig.types.json && tsc -p ./tsconfig.types_all.json",
"test": "vitest run --config vitest.config.ts",
"test:coverage": "vitest run --coverage --config vitest.coverage.config.ts",
"lint": "npm run lint:src && npm run lint:test",
"lint:src": "./node_modules/.bin/eslint ./lib",
"lint:test": "./node_modules/.bin/eslint ./test",
"types": "tsc -p ./tsconfig.json --noEmit"
},
"author": {
"name": "Peter Vermeulen",
"url": "https://www.linkedin.com/in/petervermeulen1/"
},
"keywords": [
"database",
"adapter",
"mongodb",
"nodejs",
"javasript",
"typescript"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ValkyrieStudios/mongo.git"
},
"bugs": {
"url": "https://github.com/ValkyrieStudios/mongo/issues"
},
"homepage": "https://github.com/ValkyrieStudios/mongo#README.md",
"types": "index.d.ts",
"main": "./cjs/index.js",
"module": "./esm/index.js",
"sideEffects": false,
"exports": {
".": {
"types": "./index.d.ts",
"import": "./esm/index.js",
"require": "./cjs/index.js"
},
"./Query": {
"types": "./Query.d.ts",
"import": "./esm/Query.js",
"require": "./cjs/Query.js"
},
"./Types": {
"types": "./Types.d.ts",
"import": "./esm/Types.js",
"require": "./cjs/Types.js"
}
},
"dependencies": {
"@valkyriestudios/utils": "^12.39.0",
"@valkyriestudios/validator": "^10.5.0",
"mongodb": "^6.16.0"
},
"devDependencies": {
"@types/node": "^22.15.24",
"@vitest/coverage-v8": "^3.1.4",
"esbuild-register": "^3.6.0",
"eslint": "^9.27.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.33.0",
"vitest": "^3.1.4"
}
}