mirror of
https://github.com/directus/directus.git
synced 2026-04-25 03:00:53 -04:00
46 lines
979 B
JSON
46 lines
979 B
JSON
{
|
|
"name": "@directus/schema",
|
|
"version": "12.0.0",
|
|
"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": "3.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@directus/tsconfig": "workspace:*",
|
|
"tsup": "8.2.2",
|
|
"typescript": "5.4.5"
|
|
}
|
|
}
|