Files
directus/packages/data-driver-postgres/package.json
dependabot[bot] 42c3d83b14 Bump tsup from 8.0.1 to 8.0.2 (#21410)
Bumps [tsup](https://github.com/egoist/tsup) from 8.0.1 to 8.0.2.
- [Release notes](https://github.com/egoist/tsup/releases)
- [Changelog](https://github.com/egoist/tsup/blob/dev/.releaserc.json)
- [Commits](https://github.com/egoist/tsup/compare/v8.0.1...v8.0.2)

---
updated-dependencies:
- dependency-name: tsup
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-02-13 09:07:07 +01:00

49 lines
1.3 KiB
JSON

{
"name": "@directus/data-driver-postgres",
"version": "0.3.2",
"description": "Data storage abstraction layer for Postgres",
"homepage": "https://directus.io",
"repository": {
"type": "git",
"url": "https://github.com/directus/directus.git",
"directory": "packages/data-driver-postgres"
},
"funding": "https://github.com/directus/directus?sponsor=1",
"license": "BUSL-1.1",
"author": "Rijk van Zanten <rijkvanzanten@me.com>",
"type": "module",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format=esm --dts",
"dev": "tsup src/index.ts --format=esm --dts --watch",
"test": "vitest --watch=false",
"depcruise": "depcruise src --include-only '^src' -x test.ts --output-type dot | dot -T svg > dependency-graph.svg"
},
"devDependencies": {
"@directus/data": "workspace:*",
"@directus/random": "workspace:*",
"@directus/tsconfig": "workspace:*",
"@types/node": "18.19.14",
"@types/pg": "8.11.0",
"@types/wellknown": "0.5.8",
"@vitest/coverage-v8": "1.2.2",
"dependency-cruiser": "16.2.0",
"tsup": "8.0.2",
"typescript": "5.3.3",
"vitest": "1.2.2"
},
"dependencies": {
"@directus/data-sql": "workspace:*",
"pg": "8.11.3",
"pg-query-stream": "4.5.3",
"wellknown": "0.5.0"
}
}