mirror of
https://github.com/directus/directus.git
synced 2026-02-08 14:25:04 -05:00
* 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>
45 lines
993 B
JSON
45 lines
993 B
JSON
{
|
|
"name": "@directus/types",
|
|
"version": "9.25.1",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "tsc --build",
|
|
"dev": "tsc --watch"
|
|
},
|
|
"description": "Shared types for Directus",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/directus/directus.git",
|
|
"directory": "packages/types"
|
|
},
|
|
"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"
|
|
},
|
|
"main": "dist/index.js",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"devDependencies": {
|
|
"@directus/constants": "workspace:*",
|
|
"@directus/schema": "workspace:*",
|
|
"@directus/tsconfig": "0.0.6",
|
|
"@types/express": "4.17.17",
|
|
"@types/geojson": "7946.0.10",
|
|
"express": "4.18.2",
|
|
"geojson": "0.5.0",
|
|
"knex": "2.4.2",
|
|
"pino": "8.11.0",
|
|
"typescript": "4.9.5",
|
|
"vue": "3.2.47",
|
|
"vue-router": "4.1.6",
|
|
"zod": "3.21.4"
|
|
}
|
|
}
|