Files
directus/packages/random/package.json
dependabot[bot] fd02875727 Bump @types/node from 18.19.43 to 18.19.45 (#23458)
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 18.19.43 to 18.19.45.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

---
updated-dependencies:
- dependency-name: "@types/node"
  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-08-23 08:54:43 +02:00

38 lines
932 B
JSON

{
"name": "@directus/random",
"version": "1.0.0",
"description": "Set of random-utilities for use in tests",
"homepage": "https://directus.io",
"repository": {
"type": "git",
"url": "https://github.com/directus/directus.git",
"directory": "packages/random"
},
"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"
},
"devDependencies": {
"@directus/tsconfig": "workspace:*",
"@types/node": "18.19.45",
"@vitest/coverage-v8": "1.5.3",
"tsup": "8.2.2",
"typescript": "5.4.5",
"vitest": "1.5.3"
}
}