mirror of
https://github.com/directus/directus.git
synced 2026-01-29 07:27:57 -05:00
* Change license to BSL1.1 * Mark major version * Fix formatting * Remove duplicate heading * Update formatting * Copy paste error * Update license * Update license * Format covenants * Update readme.md * Update licenses for packages * Update readme.md * Update contributors.yml OG... but to be clear, rijkvanzanten is the one who really built all of this ❤️ * Tweak license in openapi * Update packages/specs/src/openapi.yaml * Add MIT license headers * Use v10 in examples * Update additional examples * Update generate-extensions-entrypoint.test.ts * Update tests to use latest v9 and v10 versions * use lowercase for naming consistency * change casing for api license * Update migrations doc * Update dictionary * Consistent ordering of license field in app/package.json * Use major version in specs again (but as string) So it's valid for all v10 versions * Consolidate readme's --------- Co-authored-by: Ben Haynes <ben@directus.io> Co-authored-by: Pascal Jufer <pascal-jufer@bluewin.ch> Co-authored-by: ian <licitdev@gmail.com> Co-authored-by: Azri Kahar <42867097+azrikahar@users.noreply.github.com>
76 lines
1.8 KiB
JSON
76 lines
1.8 KiB
JSON
{
|
|
"name": "@directus/extensions-sdk",
|
|
"version": "10.0.0",
|
|
"description": "A toolkit to develop extensions to extend Directus",
|
|
"homepage": "https://directus.io",
|
|
"type": "module",
|
|
"bugs": {
|
|
"url": "https://github.com/directus/directus/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/directus/directus.git",
|
|
"directory": "packages/extensions-sdk"
|
|
},
|
|
"funding": "https://github.com/directus/directus?sponsor=1",
|
|
"author": "Nicola Krumschmidt",
|
|
"exports": {
|
|
".": "./dist/index.js",
|
|
"./cli": "./dist/cli/index.js",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"main": "dist/index.js",
|
|
"bin": {
|
|
"directus-extension": "cli.js"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"templates",
|
|
"!**/*.test.{js,d.ts}"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc --build",
|
|
"dev": "tsc --watch",
|
|
"test": "vitest --watch=false"
|
|
},
|
|
"dependencies": {
|
|
"@directus/composables": "workspace:*",
|
|
"@directus/constants": "workspace:*",
|
|
"@directus/types": "workspace:*",
|
|
"@directus/utils": "workspace:*",
|
|
"@rollup/plugin-commonjs": "24.1.0",
|
|
"@rollup/plugin-json": "6.0.0",
|
|
"@rollup/plugin-node-resolve": "15.0.2",
|
|
"@rollup/plugin-replace": "5.0.2",
|
|
"@rollup/plugin-terser": "0.4.1",
|
|
"@rollup/plugin-virtual": "3.0.1",
|
|
"@vue/compiler-sfc": "3.2.47",
|
|
"chalk": "5.2.0",
|
|
"commander": "10.0.1",
|
|
"esbuild": "0.17.17",
|
|
"execa": "7.1.1",
|
|
"fs-extra": "11.1.1",
|
|
"inquirer": "9.1.5",
|
|
"ora": "6.3.0",
|
|
"rollup": "3.20.7",
|
|
"rollup-plugin-esbuild": "5.0.0",
|
|
"rollup-plugin-styles": "4.0.0",
|
|
"rollup-plugin-vue": "6.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@directus/tsconfig": "0.0.7",
|
|
"@types/fs-extra": "11.0.1",
|
|
"@types/inquirer": "9.0.3",
|
|
"@vitest/coverage-c8": "0.30.1",
|
|
"typescript": "5.0.4",
|
|
"vitest": "0.30.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=12.20.0"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"license": "MIT"
|
|
}
|