Initial commit

This commit is contained in:
Ammaar Reshi
2025-01-04 14:06:53 +00:00
parent 7082408604
commit d6025af146
23760 changed files with 3299690 additions and 0 deletions

38
node_modules/postgres-bytea/package.json generated vendored Normal file
View File

@ -0,0 +1,38 @@
{
"name": "postgres-bytea",
"main": "index.js",
"version": "3.0.0",
"description": "Postgres bytea parser",
"license": "MIT",
"repository": "bendrucker/postgres-bytea",
"author": {
"name": "Ben Drucker",
"email": "bvdrucker@gmail.com",
"url": "bendrucker.me"
},
"engines": {
"node": ">= 6"
},
"scripts": {
"test": "standard && tape *.js"
},
"keywords": [
"bytea",
"postgres",
"binary",
"parser"
],
"dependencies": {
"obuf": "~1.1.2"
},
"devDependencies": {
"concat-stream": "2.0.0",
"standard": "^14.0.0",
"stream-to-promise": "^3.0.0",
"tape": "^5.0.0",
"tape-promise": "4.0.0"
},
"files": [
"*.js"
]
}