mirror of
https://github.com/directus/directus.git
synced 2026-02-08 15:05:03 -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>
49 lines
1.1 KiB
JSON
49 lines
1.1 KiB
JSON
{
|
|
"name": "@directus/composables",
|
|
"version": "9.25.1",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "tsc --build",
|
|
"dev": "tsc --watch",
|
|
"test": "vitest --watch=false"
|
|
},
|
|
"description": "Shared Vue composables for Directus use",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/directus/directus.git",
|
|
"directory": "packages/composables"
|
|
},
|
|
"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",
|
|
"!**/*.test.{js,d.ts}"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"devDependencies": {
|
|
"@directus/tsconfig": "0.0.6",
|
|
"@directus/types": "workspace:*",
|
|
"@types/lodash-es": "4.17.7",
|
|
"@vitest/coverage-c8": "0.29.3",
|
|
"@vue/test-utils": "2.3.1",
|
|
"axios": "1.3.4",
|
|
"typescript": "4.9.5",
|
|
"vitest": "0.29.3"
|
|
},
|
|
"dependencies": {
|
|
"@directus/constants": "workspace:*",
|
|
"@directus/utils": "workspace:*",
|
|
"lodash-es": "4.17.21",
|
|
"nanoid": "4.0.2",
|
|
"vue": "3.2.47"
|
|
}
|
|
}
|