Files
directus/packages/schema/package.json
Hannes Küttner 9b4fb996ce Publish all types from packages/* (#18211)
* Publish all types in packages/*

* Re-add main entrypoints and add types

* Clean-up prettier config / editorconfig

- Remove 'useTabs' so prettier will not override settings from editorconfig
- Remove settings in editorconfig which match the defaults anyway

* Remove types entrypoint again

* Update packages/schema/package.json

---------

Co-authored-by: Pascal Jufer <pascal-jufer@bluewin.ch>
2023-04-17 21:37:17 +08:00

55 lines
1.1 KiB
JSON

{
"name": "@directus/schema",
"version": "9.25.1",
"description": "Utility for extracting information about existing DB schema",
"type": "module",
"keywords": [
"sql",
"knex",
"schema",
"mysql",
"postgresql",
"cockroachdb",
"sqlite3",
"javascript"
],
"homepage": "https://directus.io",
"bugs": {
"url": "https://github.com/directus/directus/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/directus/directus.git",
"directory": "packages/schema"
},
"funding": "https://github.com/directus/directus?sponsor=1",
"license": "GPL-3.0",
"author": "Rijk van Zanten <rijkvanzanten@me.com>",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json",
"./types/overview": {
"types": "./dist/types/overview.d.ts",
"default": "./dist/types/overview.js"
}
},
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc --build",
"dev": "tsc --watch"
},
"dependencies": {
"knex": "2.4.2"
},
"devDependencies": {
"@directus/tsconfig": "0.0.6",
"typescript": "4.9.5"
},
"publishConfig": {
"access": "public"
}
}