58ca4e68db
- Go backend API with full CRUD for all modules (CRM, Sales, Finance, HR, Legal, Marketing, Support, Purchase, Inventory, Projects, Automation, Analytics) - Rust analytics service with parallel report generation - C runtime with POSIX shared memory IPC - PostgreSQL schema with 30+ tables, full migrations - Redis cache, sessions, pub/sub - Kafka event streaming with Zookeeper - WebSocket hub for real-time updates - Automation engine with cron jobs, workflows, event triggers - JWT authentication, multi-tenant from start - Docker Compose with all services - Nginx reverse proxy with rate limiting - Integration tests passing - Feature gap analysis against Fortnox/Odoo/Visma Refs: BOC-001
77 lines
1.6 KiB
JSON
77 lines
1.6 KiB
JSON
{
|
|
"name": "pg",
|
|
"version": "8.22.0",
|
|
"description": "PostgreSQL client - pure javascript & libpq with the same API",
|
|
"keywords": [
|
|
"database",
|
|
"libpq",
|
|
"pg",
|
|
"postgre",
|
|
"postgres",
|
|
"postgresql",
|
|
"rdbms"
|
|
],
|
|
"homepage": "https://github.com/brianc/node-postgres",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/brianc/node-postgres.git",
|
|
"directory": "packages/pg"
|
|
},
|
|
"author": "Brian Carlson <brian.m.carlson@gmail.com>",
|
|
"main": "./lib",
|
|
"exports": {
|
|
".": {
|
|
"import": "./esm/index.mjs",
|
|
"require": "./lib/index.js",
|
|
"default": "./lib/index.js"
|
|
},
|
|
"./package.json": {
|
|
"default": "./package.json"
|
|
},
|
|
"./lib/*": "./lib/*.js",
|
|
"./lib/*.js": "./lib/*.js"
|
|
},
|
|
"dependencies": {
|
|
"pg-connection-string": "^2.14.0",
|
|
"pg-pool": "^3.14.0",
|
|
"pg-protocol": "^1.15.0",
|
|
"pg-types": "2.2.0",
|
|
"pgpass": "1.0.5"
|
|
},
|
|
"devDependencies": {
|
|
"@cloudflare/vitest-pool-workers": "0.8.23",
|
|
"@cloudflare/workers-types": "^4.20230404.0",
|
|
"async": "2.6.4",
|
|
"bluebird": "3.7.2",
|
|
"co": "4.6.0",
|
|
"pg-copy-streams": "0.3.0",
|
|
"typescript": "^6.0.3",
|
|
"vitest": "~3.0.9",
|
|
"wrangler": "^3.x"
|
|
},
|
|
"optionalDependencies": {
|
|
"pg-cloudflare": "^1.4.0"
|
|
},
|
|
"peerDependencies": {
|
|
"pg-native": ">=3.0.1"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"pg-native": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "make test-all"
|
|
},
|
|
"files": [
|
|
"lib",
|
|
"esm",
|
|
"SPONSORS.md"
|
|
],
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">= 16.0.0"
|
|
},
|
|
"gitHead": "b617619f9fb6fbd231731823e2732a2927ded4be"
|
|
}
|