@dataql/node
Version:
DataQL core SDK for unified data management with MongoDB and GraphQL - Production Multi-Cloud Ready
63 lines (62 loc) • 1.69 kB
JSON
{
"name": "@dataql/node",
"version": "0.9.1",
"description": "DataQL core SDK for unified data management with MongoDB and GraphQL - Production Multi-Cloud Ready",
"publishConfig": {
"access": "public"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"exports": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"scripts": {
"build:esm": "tsc --project tsconfig.esm.json",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build": "npm run build:esm && npm run build:cjs",
"test": "jest --passWithNoTests",
"prepare": "npm run build",
"prepublishOnly": "echo 'Skipping lint for publishing'",
"lint": "eslint 'src/**/*.ts'",
"dev": "tsc --watch",
"generate": "ts-node scripts/generate.ts",
"publish:production": "npm run build && npm publish"
},
"keywords": [
"dataql",
"mongodb",
"graphql",
"sdk",
"multi-cloud",
"production"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/graphql": "^14.2.3",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.5",
"eslint": "^8.56.0",
"jest": "^29.6.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.1.6"
},
"dependencies": {
"@dataql/shared": "^0.1.0",
"graphql": "^16.11.0",
"mongodb": "^6.17.0",
"uuid": "^11.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Andrejs1979/dataql.git",
"directory": "packages/core"
},
"bugs": {
"url": "https://github.com/Andrejs1979/dataql/issues"
},
"homepage": "https://github.com/Andrejs1979/dataql#readme"
}