Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
43 lines
1.0 KiB
Plaintext
43 lines
1.0 KiB
Plaintext
{
|
|
"name": "@directus/sdk",
|
|
"version": "21.1.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"
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"main": "./dist/index.js",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"devDependencies": {
|
|
"@directus/tsconfig": "3.0.0",
|
|
"@vitest/coverage-v8": "3.2.4",
|
|
"esbuild-plugin-replace": "1.4.0",
|
|
"tsdown": "0.15.11",
|
|
"typescript": "5.9.3",
|
|
"vitest": "3.2.4",
|
|
"@directus/system-data": "4.1.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=22"
|
|
},
|
|
"scripts": {
|
|
"build": "NODE_ENV=production tsdown",
|
|
"dev": "NODE_ENV=development tsdown",
|
|
"test": "vitest run",
|
|
"test:coverage": "vitest run --coverage"
|
|
}
|
|
} |