Files
directus/packages/data-sql/package.json
dependabot[bot] b5f18fdfb4 Bump @types/node from 18.19.21 to 18.19.24 (#21845)
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 18.19.21 to 18.19.24.
- [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-03-14 10:14:15 +01:00

48 lines
1.3 KiB
JSON

{
"name": "@directus/data-sql",
"version": "0.3.4",
"type": "module",
"sideEffects": false,
"scripts": {
"build": "pnpm run '/^bundle|typecheck$/'",
"dev": "pnpm run bundle --watch",
"bundle": "tsup src/index.ts --format=esm --dts",
"typecheck": "tsc --noEmit",
"test": "vitest --watch=false",
"depcruise": "depcruise src --include-only '^src' -x test.ts --output-type dot | dot -T svg > dependency-graph.svg"
},
"description": "Shared SQL helpers for SQL-based drivers",
"repository": {
"type": "git",
"url": "https://github.com/directus/directus.git",
"directory": "packages/data-sql"
},
"funding": "https://github.com/directus/directus?sponsor=1",
"license": "BSUL-1.1",
"author": "Rijk van Zanten <rijkvanzanten@me.com>",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"main": "dist/index.js",
"files": [
"dist"
],
"devDependencies": {
"@directus/data": "workspace:*",
"@directus/random": "workspace:*",
"@directus/tsconfig": "workspace:*",
"@types/lodash-es": "4.17.12",
"@types/node": "18.19.24",
"@types/wellknown": "0.5.8",
"@vitest/coverage-v8": "1.3.1",
"dependency-cruiser": "16.2.2",
"tsup": "8.0.2",
"typescript": "5.3.3",
"vitest": "1.3.1"
},
"dependencies": {
"lodash-es": "4.17.21"
}
}