mirror of
https://github.com/directus/directus.git
synced 2026-04-25 03:00:53 -04:00
42 lines
1017 B
JSON
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"
|
|
}
|
|
}
|