Files
directus/packages/utils/package.json
dependabot[bot] 40c61638fc Bump date-fns from 3.2.0 to 3.3.1 (#21185)
Bumps [date-fns](https://github.com/date-fns/date-fns) from 3.2.0 to 3.3.1.
- [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.2.0...v3.3.1)

---
updated-dependencies:
- dependency-name: date-fns
  dependency-type: direct:production
  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>
2024-01-25 01:50:25 +01:00

66 lines
1.8 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.3.1",
"fs-extra": "11.2.0",
"joi": "17.11.0",
"js-yaml": "4.1.0",
"lodash-es": "4.17.21",
"micromustache": "8.0.3"
},
"devDependencies": {
"@directus/tsconfig": "workspace:*",
"@directus/types": "workspace:*",
"@types/fs-extra": "11.0.4",
"@types/js-yaml": "4.0.9",
"@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.1"
},
"peerDependencies": {
"vue": "3.3.13"
},
"peerDependenciesMeta": {
"vue": {
"optional": true
}
}
}