Files
directus/sdk/package.json
dependabot[bot] 42c3d83b14 Bump tsup from 8.0.1 to 8.0.2 (#21410)
Bumps [tsup](https://github.com/egoist/tsup) from 8.0.1 to 8.0.2.
- [Release notes](https://github.com/egoist/tsup/releases)
- [Changelog](https://github.com/egoist/tsup/blob/dev/.releaserc.json)
- [Commits](https://github.com/egoist/tsup/compare/v8.0.1...v8.0.2)

---
updated-dependencies:
- dependency-name: tsup
  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-02-13 09:07:07 +01:00

43 lines
922 B
JSON

{
"name": "@directus/sdk",
"version": "15.0.0",
"description": "Directus JavaScript SDK",
"homepage": "https://directus.io",
"repository": {
"type": "git",
"url": "https://github.com/directus/directus.git",
"directory": "sdk"
},
"funding": "https://github.com/directus/directus?sponsor=1",
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "NODE_ENV=production tsup",
"dev": "NODE_ENV=development tsup",
"test": "vitest --watch=false"
},
"devDependencies": {
"@directus/tsconfig": "workspace:*",
"@types/node-fetch": "2.6.11",
"tsup": "8.0.2",
"typescript": "5.3.3",
"vitest": "1.2.2"
},
"engines": {
"node": ">=18.0.0"
}
}