
- Updated package.json to use PostgreSQL dependencies (pg, @types/pg)
- Removed SQLite dependency
- Updated TypeORM configuration for PostgreSQL connection
- Modified database entities to use PostgreSQL-compatible column types (jsonb, timestamp)
- Created comprehensive database migration script for initial schema
- Updated environment configuration with PostgreSQL variables
- Updated README with PostgreSQL setup instructions and database migration steps
- Ensured storage directories are properly configured
🤖 Generated with BackendIM
Co-Authored-By: Claude <noreply@anthropic.com>
39 lines
907 B
JSON
39 lines
907 B
JSON
{
|
|
"name": "pg-cloudflare",
|
|
"version": "1.2.6",
|
|
"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": {
|
|
".": {
|
|
"cloudflare": {
|
|
"import": "./esm/index.mjs",
|
|
"require": "./dist/index.js"
|
|
},
|
|
"default": "./dist/empty.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"
|
|
],
|
|
"gitHead": "cd877a57612a39335a97b593111710d26126279d"
|
|
}
|