mirror of
https://github.com/directus/directus.git
synced 2026-04-25 03:00:53 -04:00
47 lines
1.2 KiB
JSON
47 lines
1.2 KiB
JSON
{
|
|
"name": "@directus/extensions-registry",
|
|
"version": "1.0.3",
|
|
"description": "Abstraction for exploring Directus extensions on a package registry",
|
|
"homepage": "https://directus.io",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/directus/directus.git",
|
|
"directory": "packages/extensions-registry"
|
|
},
|
|
"funding": "https://github.com/directus/directus?sponsor=1",
|
|
"license": "MIT",
|
|
"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",
|
|
"test": "vitest --watch=false"
|
|
},
|
|
"dependencies": {
|
|
"@directus/errors": "workspace:*",
|
|
"@directus/extensions": "workspace:*",
|
|
"@directus/utils": "workspace:*",
|
|
"ky": "1.2.3",
|
|
"lodash-es": "4.17.21",
|
|
"validate-npm-package-name": "5.0.0",
|
|
"zod": "3.22.4"
|
|
},
|
|
"devDependencies": {
|
|
"@directus/tsconfig": "workspace:*",
|
|
"@types/lodash-es": "4.17.12",
|
|
"@types/validate-npm-package-name": "4.0.2",
|
|
"@vitest/coverage-v8": "1.4.0",
|
|
"tsup": "8.0.2",
|
|
"typescript": "5.3.3",
|
|
"vitest": "1.3.1"
|
|
}
|
|
}
|