mirror of
https://github.com/directus/directus.git
synced 2026-01-15 03:17:54 -05:00
45 lines
1.1 KiB
JSON
45 lines
1.1 KiB
JSON
{
|
|
"name": "@directus/data-driver-postgres",
|
|
"version": "0.2.1",
|
|
"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"
|
|
},
|
|
"devDependencies": {
|
|
"@directus/data": "workspace:*",
|
|
"@directus/random": "workspace:*",
|
|
"@directus/tsconfig": "workspace:*",
|
|
"@types/node": "18.16.12",
|
|
"@types/pg": "8.6.6",
|
|
"@vitest/coverage-c8": "0.31.1",
|
|
"tsup": "7.2.0",
|
|
"typescript": "5.2.2",
|
|
"vitest": "0.31.1"
|
|
},
|
|
"dependencies": {
|
|
"@directus/data-sql": "workspace:*",
|
|
"pg": "8.10.0",
|
|
"pg-query-stream": "^4.5.0"
|
|
}
|
|
}
|