@dossierhq/database-adapter
Version:
A library for adapting Dossier to a database, such as SQLite or PostgreSQL.
56 lines • 1.47 kB
JSON
{
"name": "@dossierhq/database-adapter",
"version": "0.7.21",
"description": "A library for adapting Dossier to a database, such as SQLite or PostgreSQL.",
"keywords": [
"dossier",
"cms",
"database"
],
"homepage": "https://dossierhq.dev",
"author": {
"name": "Jonas Bengtsson"
},
"type": "module",
"sideEffects": false,
"exports": {
".": "./lib/index.js"
},
"types": "./lib/index.d.ts",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dossierhq/dossierhq.git",
"directory": "libraries/database-adapter"
},
"dependencies": {
"tslib": "~2.8.1"
},
"peerDependencies": {
"@dossierhq/core": "0.7.21"
},
"devDependencies": {
"eslint": "~9.31.0",
"typescript": "~5.8.3",
"vitest": "~3.2.4",
"@dossierhq/core": "0.7.21",
"@dossierhq/eslint-config": "1.0.2",
"@dossierhq/typescript-config": "1.0.3"
},
"scripts": {
"build": "tsc && post-process-build deno-esm-only",
"build:watch": "tsc --watch",
"lint": "npm run prettier:check && npm run eslint:check",
"clean": "rm -rf lib/ coverage/",
"eslint:check": "eslint --max-warnings=0",
"eslint:fix": "eslint --fix .",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"test": "vitest",
"test:update-snapshot": "vitest --update",
"test:watch": "vitest --watch"
}
}