Files
memecoin-botV2/.pnpm-store/v10/files/39/72e76531b3f85ff27cfcef4ba4e60f563e9e7eaf1b2be03933c4e7edb83349a42fc629e48d78167d4a4fd9ca02552b87ff820ecc8d48cc50eb57e28d888530

45 lines
1.0 KiB
Plaintext

{
"name": "pg-protocol",
"version": "1.16.0",
"description": "The postgres client/server binary protocol, implemented in TypeScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./esm/index.js",
"require": "./dist/index.js",
"default": "./dist/index.js"
},
"./dist/*": "./dist/*.js",
"./dist/*.js": "./dist/*.js"
},
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.7",
"@types/mocha": "^10.0.10",
"@types/node": "^16",
"chai": "^4.2.0",
"mocha": "^11.7.5",
"ts-node": "^8.5.4",
"typescript": "^6.0.3"
},
"scripts": {
"test": "mocha dist/**/*.test.js",
"build": "tsc",
"build:watch": "tsc --watch",
"prepublish": "yarn build",
"pretest": "yarn build"
},
"repository": {
"type": "git",
"url": "git://github.com/brianc/node-postgres.git",
"directory": "packages/pg-protocol"
},
"files": [
"/dist/*{js,ts,map}",
"/src",
"/esm"
],
"gitHead": "df274d1ba9ad9d11a8f1079314faeafde7208207"
}