Files
directus/packages/data-driver-postgres/package.json
2024-03-04 03:47:55 +01:00

51 lines
1.4 KiB
JSON

{
"name": "@directus/data-driver-postgres",
"version": "0.3.3",
"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": "pnpm run '/^bundle|typecheck$/'",
"dev": "pnpm run bundle --watch",
"bundle": "tsup src/index.ts --format=esm --dts",
"typecheck": "tsc --noEmit",
"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.21",
"@types/pg": "8.11.2",
"@types/wellknown": "0.5.8",
"@vitest/coverage-v8": "1.3.1",
"dependency-cruiser": "16.2.2",
"tsup": "8.0.2",
"typescript": "5.3.3",
"vitest": "1.3.1"
},
"dependencies": {
"@directus/data-sql": "workspace:*",
"pg": "8.11.3",
"pg-query-stream": "4.5.3",
"wellknown": "0.5.0"
}
}