mirror of
https://github.com/brianc/node-postgres.git
synced 2025-12-08 20:16:25 +00:00
- pg-cloudflare@1.2.0 - pg-connection-string@2.8.0 - pg-cursor@2.14.0 - pg-esm-test@1.1.0 - pg-native@3.4.0 - pg-pool@3.9.0 - pg-protocol@1.9.0 - pg-query-stream@4.9.0 - pg@8.15.0
36 lines
816 B
JSON
36 lines
816 B
JSON
{
|
|
"name": "pg-cloudflare",
|
|
"version": "1.2.0",
|
|
"description": "A socket implementation that can run on Cloudflare Workers using native TCP connections.",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"ts-node": "^8.5.4",
|
|
"typescript": "^4.0.3"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"import": "./esm/index.mjs",
|
|
"require": "./dist/index.js",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"build:watch": "tsc --watch",
|
|
"prepublish": "yarn build",
|
|
"test": "echo e2e test in pg package"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/brianc/node-postgres.git",
|
|
"directory": "packages/pg-cloudflare"
|
|
},
|
|
"files": [
|
|
"/dist/*{js,ts,map}",
|
|
"/src",
|
|
"/esm"
|
|
]
|
|
}
|