mirror of
https://github.com/directus/directus.git
synced 2026-04-25 03:00:53 -04:00
Bumps [vue-router](https://github.com/vuejs/router) from 4.3.3 to 4.4.0. - [Release notes](https://github.com/vuejs/router/releases) - [Commits](https://github.com/vuejs/router/compare/v4.3.3...v4.4.0) --- updated-dependencies: - dependency-name: vue-router dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
80 lines
1.9 KiB
JSON
80 lines
1.9 KiB
JSON
{
|
|
"name": "@directus/extensions",
|
|
"version": "1.0.9",
|
|
"description": "Utilities and types for Directus extensions",
|
|
"homepage": "https://directus.io",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/directus/directus.git",
|
|
"directory": "packages/extensions"
|
|
},
|
|
"funding": "https://github.com/directus/directus?sponsor=1",
|
|
"license": "MIT",
|
|
"author": "Rijk van Zanten <rijkvanzanten@me.com>",
|
|
"type": "module",
|
|
"exports": {
|
|
".": "./dist/index.js",
|
|
"./node": "./dist/node.js",
|
|
"./package.json": "./package.json",
|
|
"./api.d.ts": "./api.d.ts"
|
|
},
|
|
"main": "dist/index.js",
|
|
"files": [
|
|
"dist",
|
|
"api.d.ts"
|
|
],
|
|
"scripts": {
|
|
"build": "pnpm run '/^build:.*/'",
|
|
"build:node": "tsup src/node.ts --tsconfig src/node/tsconfig.json --out-dir dist --format=esm --dts",
|
|
"build:shared": "tsup src/index.ts --tsconfig src/tsconfig.json --out-dir dist --format=esm --dts",
|
|
"dev": "pnpm run '/^build:.*/' --watch",
|
|
"test": "vitest --watch=false"
|
|
},
|
|
"dependencies": {
|
|
"@directus/constants": "workspace:*",
|
|
"@directus/themes": "workspace:*",
|
|
"@directus/types": "workspace:*",
|
|
"@directus/utils": "workspace:*",
|
|
"@types/express": "4.17.21",
|
|
"fs-extra": "11.2.0",
|
|
"lodash-es": "4.17.21",
|
|
"zod": "3.23.8"
|
|
},
|
|
"devDependencies": {
|
|
"@directus/tsconfig": "workspace:*",
|
|
"@types/fs-extra": "11.0.4",
|
|
"@types/lodash-es": "4.17.12",
|
|
"@types/node": "18.19.33",
|
|
"@types/tmp": "0.2.6",
|
|
"@vitest/coverage-v8": "1.5.3",
|
|
"knex": "3.1.0",
|
|
"pino": "9.2.0",
|
|
"tmp": "0.2.3",
|
|
"tsup": "8.1.0",
|
|
"typescript": "5.4.5",
|
|
"vitest": "1.5.3",
|
|
"vue": "3.4.27",
|
|
"vue-router": "4.4.0"
|
|
},
|
|
"peerDependencies": {
|
|
"knex": "3",
|
|
"pino": "9",
|
|
"vue": "^3.4",
|
|
"vue-router": "4"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"knex": {
|
|
"optional": true
|
|
},
|
|
"pino": {
|
|
"optional": true
|
|
},
|
|
"vue": {
|
|
"optional": true
|
|
},
|
|
"vue-router": {
|
|
"optional": true
|
|
}
|
|
}
|
|
}
|