mirror of
https://github.com/directus/directus.git
synced 2026-01-14 08:37:57 -05:00
46 lines
985 B
JSON
46 lines
985 B
JSON
{
|
|
"name": "@directus/schema",
|
|
"version": "13.0.1",
|
|
"description": "Utility for extracting information about existing DB schema",
|
|
"keywords": [
|
|
"sql",
|
|
"knex",
|
|
"schema",
|
|
"mysql",
|
|
"postgresql",
|
|
"cockroachdb",
|
|
"sqlite3",
|
|
"javascript"
|
|
],
|
|
"homepage": "https://directus.io",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/directus/directus.git",
|
|
"directory": "packages/schema"
|
|
},
|
|
"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"
|
|
},
|
|
"dependencies": {
|
|
"knex": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@directus/tsconfig": "catalog:",
|
|
"tsup": "catalog:",
|
|
"typescript": "catalog:"
|
|
}
|
|
}
|