package.json 805 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "pg-cloudflare",
  3. "version": "1.1.1",
  4. "description": "A socket implementation that can run on Cloudflare Workers using native TCP connections.",
  5. "main": "dist/empty.js",
  6. "types": "dist/index.d.ts",
  7. "license": "MIT",
  8. "devDependencies": {
  9. "ts-node": "^8.5.4",
  10. "typescript": "^4.0.3"
  11. },
  12. "exports": {
  13. "workerd": "./dist/index.js",
  14. "default": "./dist/empty.js"
  15. },
  16. "scripts": {
  17. "build": "tsc",
  18. "build:watch": "tsc --watch",
  19. "prepublish": "yarn build",
  20. "test": "echo e2e test in pg package"
  21. },
  22. "repository": {
  23. "type": "git",
  24. "url": "git://github.com/brianc/node-postgres.git",
  25. "directory": "packages/pg-cloudflare"
  26. },
  27. "files": [
  28. "/dist/*{js,ts,map}",
  29. "/src"
  30. ],
  31. "gitHead": "eaafac36dc8f4a13f1fecc9e3420d35559fd8e2b"
  32. }