UNPKG

@palmares/databases

Version:

Add support for working with databases with palmares framework

52 lines 1.67 kB
{ "name": "@palmares/databases", "version": "0.2.14", "description": "Add support for working with databases with palmares framework", "main": "./dist/src/index.cjs", "module": "./dist/src/index.js", "types": "./dist/src/index.d.ts", "files": [ "dist", "package.json", "README.md", "CHANGELOG.md" ], "exports": { ".": { "types": "./dist/src/index.d.ts", "import": "./dist/src/index.js", "require": "./dist/src/index.cjs" } }, "repository": { "type": "git", "url": "git+https://github.com/palmaresHQ/palmares.git" }, "keywords": [ "palmares", "databases" ], "type": "module", "author": "Nicolas Melo", "license": "MIT", "bugs": { "url": "https://github.com/palmaresHQ/palmares/issues" }, "homepage": "https://github.com/palmaresHQ/palmares#readme", "dependencies": { "@palmares/core": "0.2.6", "@palmares/events": "0.1.6", "@palmares/logging": "0.2.6" }, "scripts": { "copy:templates": "copyfiles -u 1 \"templates/**/*\" ../../bin/templates/db", "test": "tsx ./src/index.ts", "clear": "rimraf ./dist", "build:types": "tsc --project tsconfig.types.json", "build:cjs:esm": "tsup ./src --out-dir ./dist/src --format cjs,esm --silent --no-splitting --no-splitting", "build": "pnpm run clear && pnpm run build:cjs:esm && pnpm run build:types", "build:types:watch": "tsc --project tsconfig.types.json --watch --preserveWatchOutput", "build:cjs:esm:watch": "tsup ./src --out-dir ./dist/src --format cjs,esm --watch --silent --no-splitting", "build:watch": "pnpm run build:types:watch & pnpm run build:cjs:esm:watch" } }