UNPKG

@bs-plugins/postgresql

Version:

Bamboo Shell plugin for PostgreSQL

48 lines 1.2 kB
{ "version": "1.2.31", "name": "@bs-plugins/postgresql", "description": "Bamboo Shell plugin for PostgreSQL", "type": "module", "exports": { ".": "./dist/plugin.mjs" }, "files": [ "dist/plugin.mjs", "dist/plugin.d.ts", "dist/plugin.mjs.map" ], "types": "./dist/plugin.d.ts", "engines": { "node": ">=18.0.0" }, "keywords": [ "Bamboo", "Shell", "Plugin", "PostgreSQL" ], "author": "Black Eye Technology", "license": "MIT", "dependencies": { "pg": "^8.11.3" }, "devDependencies": { "@types/pg": "^8.11.0", "@bs-core/shell": "^1.20.4" }, "peerDependencies": { "@bs-core/shell": "^1.20.4" }, "private": false, "scripts": { "rollup": "rollup -c rollup.config.mjs", "build-dev": "tsc && npm run rollup", "build-prod": "npm run clean && tsc && NODE_ENV=production npm run rollup", "format-ts": "prettier --write 'src/**/*.ts'", "format-js": "prettier --write 'dist/**/*.{js,ts}'", "format-misc": "prettier --write '**/*.{json,md,yaml}'", "install-bin": "npm install -g $(npm pack . | tail -1)", "test": "echo \"No tests\" && exit 0", "clean": "rm -rf ./dist ./out" } }