Files
directus/packages/validation/package.json
dependabot[bot] b77a3857e6 Bump tsup from 8.1.0 to 8.1.2 (#23060)
Bumps [tsup](https://github.com/egoist/tsup) from 8.1.0 to 8.1.2.
- [Release notes](https://github.com/egoist/tsup/releases)
- [Changelog](https://github.com/egoist/tsup/blob/dev/.releaserc.json)
- [Commits](https://github.com/egoist/tsup/compare/v8.1.0...v8.1.2)

---
updated-dependencies:
- dependency-name: tsup
  dependency-type: direct:development
  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>
2024-07-19 09:28:52 +02:00

42 lines
1016 B
JSON

{
"name": "@directus/validation",
"version": "0.0.18",
"type": "module",
"sideEffects": false,
"scripts": {
"build": "tsup src/index.ts --format=esm --dts",
"dev": "tsup src/index.ts --format=esm --dts --watch",
"test": "vitest --watch=false"
},
"description": "Utils to help with validation",
"repository": {
"type": "git",
"url": "https://github.com/directus/directus.git",
"directory": "packages/validation"
},
"funding": "https://github.com/directus/directus?sponsor=1",
"license": "MIT",
"author": "Rijk van Zanten <rijkvanzanten@me.com>",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"main": "dist/index.js",
"files": [
"dist"
],
"devDependencies": {
"@directus/tsconfig": "workspace:*",
"@directus/types": "workspace:*",
"@vitest/coverage-v8": "1.5.3",
"tsup": "8.1.2",
"typescript": "5.4.5",
"vitest": "1.5.3"
},
"dependencies": {
"@directus/errors": "workspace:*",
"@directus/utils": "workspace:*",
"joi": "17.13.3"
}
}