Files
directus/packages/errors/package.json
Rijk van Zanten 3491af9de4 Make tests deterministic, remove @directus/random (#25575)
* Make tests deterministic by dropping random

* Remove random dep

* Drop random package

* Update pnpm lock

* Update app/src/composables/use-permissions/collection/lib/is-action-allowed.test.ts

---------

Co-authored-by: Alex Gaillard <alex@directus.io>
2025-07-31 17:16:40 -04:00

43 lines
1.0 KiB
JSON

{
"name": "@directus/errors",
"version": "2.0.2",
"description": "Create consistent error objects around the codebase",
"repository": {
"type": "git",
"url": "https://github.com/directus/directus.git",
"directory": "packages/errors"
},
"funding": "https://github.com/directus/directus?sponsor=1",
"license": "MIT",
"author": "Rijk van Zanten <rijkvanzanten@me.com>",
"sideEffects": false,
"type": "module",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format=esm --dts",
"dev": "tsup src/index.ts --format=esm --dts --watch",
"test": "vitest run",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@directus/storage": "workspace:*",
"ms": "catalog:"
},
"devDependencies": {
"@directus/tsconfig": "catalog:",
"@directus/types": "workspace:*",
"@types/ms": "catalog:",
"@vitest/coverage-v8": "catalog:",
"tsup": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:"
}
}