Files
directus/packages/errors/package.json
Rijk van Zanten bad22bf1ff v10.9.2
2024-02-14 11:21:02 -05:00

42 lines
1017 B
JSON

{
"name": "@directus/errors",
"version": "0.2.3",
"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 --watch=false"
},
"dependencies": {
"@directus/storage": "workspace:*",
"ms": "2.1.3"
},
"devDependencies": {
"@directus/random": "workspace:*",
"@directus/tsconfig": "workspace:*",
"@types/ms": "0.7.34",
"@vitest/coverage-v8": "1.2.2",
"tsup": "8.0.2",
"typescript": "5.3.3",
"vitest": "1.2.2"
}
}