mirror of
https://github.com/directus/directus.git
synced 2026-01-10 11:38:13 -05:00
42 lines
1009 B
JSON
42 lines
1009 B
JSON
{
|
|
"name": "@directus/validation",
|
|
"version": "1.0.5",
|
|
"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": "3.0.0",
|
|
"@directus/types": "workspace:*",
|
|
"@vitest/coverage-v8": "2.1.8",
|
|
"tsup": "8.3.5",
|
|
"typescript": "5.7.2",
|
|
"vitest": "2.1.8"
|
|
},
|
|
"dependencies": {
|
|
"@directus/errors": "workspace:*",
|
|
"@directus/utils": "workspace:*",
|
|
"joi": "17.13.3"
|
|
}
|
|
}
|