Files
directus/packages/utils/package.json
dependabot[bot] 3a7a5dcf57 Bump date-fns from 3.0.5 to 3.0.6 (#20870)
Bumps [date-fns](https://github.com/date-fns/date-fns) from 3.0.5 to 3.0.6.
- [Release notes](https://github.com/date-fns/date-fns/releases)
- [Changelog](https://github.com/date-fns/date-fns/blob/main/CHANGELOG.md)
- [Commits](https://github.com/date-fns/date-fns/compare/v3.0.5...v3.0.6)

---
updated-dependencies:
- dependency-name: date-fns
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-12-25 10:14:58 +01:00

64 lines
1.7 KiB
JSON

{
"name": "@directus/utils",
"version": "11.0.3",
"description": "Utilities shared between the Directus packages",
"homepage": "https://directus.io",
"repository": {
"type": "git",
"url": "https://github.com/directus/directus.git",
"directory": "packages/utils"
},
"funding": "https://github.com/directus/directus?sponsor=1",
"license": "MIT",
"author": "Rijk van Zanten <rijkvanzanten@me.com>",
"sideEffects": false,
"type": "module",
"exports": {
".": "./dist/shared/index.js",
"./node": "./dist/node/index.js",
"./browser": "./dist/browser/index.js",
"./package.json": "./package.json"
},
"main": "dist/shared/index.js",
"files": [
"dist"
],
"scripts": {
"build": "pnpm run '/^build:.*/'",
"build:browser": "tsup browser/index.ts --tsconfig browser/tsconfig.json --out-dir dist/browser --format=esm --dts",
"build:node": "tsup node/index.ts --tsconfig node/tsconfig.json --out-dir dist/node --format=esm --dts",
"build:shared": "tsup shared/index.ts --tsconfig shared/tsconfig.json --out-dir dist/shared --format=esm --dts",
"dev": "pnpm run '/^build:.*/' --watch",
"test": "vitest --watch=false"
},
"dependencies": {
"@directus/constants": "workspace:*",
"date-fns": "3.0.6",
"fs-extra": "11.2.0",
"joi": "17.11.0",
"lodash-es": "4.17.21",
"micromustache": "8.0.3"
},
"devDependencies": {
"@directus/tsconfig": "workspace:*",
"@directus/types": "workspace:*",
"@types/fs-extra": "11.0.4",
"@types/lodash-es": "4.17.12",
"@types/node": "18.19.3",
"@types/tmp": "0.2.6",
"@vitest/coverage-v8": "1.1.0",
"tmp": "0.2.1",
"tsup": "8.0.1",
"typescript": "5.3.3",
"vitest": "1.1.0"
},
"peerDependencies": {
"vue": "3.3.13"
},
"peerDependenciesMeta": {
"vue": {
"optional": true
}
}
}