Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

postgrejs

Package Overview
Dependencies
Maintainers
0
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postgrejs - npm Package Compare versions

Comparing version 2.18.0 to 2.18.1

cjs/package.json

7

CHANGELOG.md

@@ -0,1 +1,8 @@

# v2.18.1
[2024-08-12]
### Changes
* Applied publint to check package.json ([`8ce6bf1`](https://github.com/panates/postgrejs/commit/8ce6bf1e67a02bed513f1238e20a62895862bb5c))
# v2.18.0

@@ -2,0 +9,0 @@ [2024-08-12]

28

package.json
{
"name": "postgrejs",
"description": "Professional PostgreSQL client NodeJS",
"version": "2.18.0",
"version": "2.18.1",
"author": "Panates",

@@ -9,5 +9,5 @@ "license": "MIT",

"doublylinked": "^2.5.4",
"lightning-pool": "^4.7.0",
"lightning-pool": "^4.7.3",
"postgres-bytea": "^3.0.0",
"power-tasks": "^1.10.0",
"power-tasks": "^1.10.1",
"putil-merge": "^3.13.0",

@@ -18,12 +18,20 @@ "putil-promisify": "^1.10.1",

},
"type": "module",
"exports": {
".": {
"import": {
"types": "./types/index.d.ts",
"default": "./esm/index.js"
},
"require": {
"types": "./types/index.d.ts",
"default": "./cjs/index.js"
},
"default": "./esm/index.js"
},
"./package.json": "./package.json"
},
"main": "./cjs/index.js",
"module": "./esm/index.js",
"types": "./types/index.d.ts",
"exports": {
".": {
"require": "./cjs/index.js",
"import": "./esm/index.js",
"types": "./types/index.d.ts"
}
},
"homepage": "https://postgrejs.panates.com/",

@@ -30,0 +38,0 @@ "contributors": [

@@ -1,4 +0,4 @@

import type { BindParam } from '../connection/bind-param';
import type { BindParam } from '../connection/bind-param.js';
import type { DataFormat } from '../constants.js';
import type { DataTypeMap } from '../data-type-map';
import type { DataTypeMap } from '../data-type-map.js';
import type { DataMappingOptions } from './data-mapping-options.js';

@@ -5,0 +5,0 @@ export interface QueryOptions extends DataMappingOptions {

@@ -1,2 +0,2 @@

import type { Cursor } from '../connection/cursor';
import type { Cursor } from '../connection/cursor.js';
import type { CommandResult } from './command-result.js';

@@ -3,0 +3,0 @@ export interface QueryResult extends CommandResult {

@@ -1,2 +0,2 @@

import type { DataTypeMap } from '../data-type-map';
import type { DataTypeMap } from '../data-type-map.js';
import type { DataMappingOptions } from './data-mapping-options.js';

@@ -3,0 +3,0 @@ export interface ScriptExecuteOptions extends DataMappingOptions {

@@ -1,2 +0,2 @@

import type { DataTypeMap } from '../data-type-map';
import type { DataTypeMap } from '../data-type-map.js';
import type { OID } from '../types.js';

@@ -3,0 +3,0 @@ export interface StatementPrepareOptions {

import type { DataMappingOptions } from './interfaces/data-mapping-options.js';
import type { SmartBuffer } from './protocol/smart-buffer';
import type { SmartBuffer } from './protocol/smart-buffer.js';
export type OID = number;

@@ -4,0 +4,0 @@ export type Maybe<T> = T | undefined;

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc