mirror of
https://github.com/directus/directus.git
synced 2026-04-25 03:00:53 -04:00
* replaced "a few" type constraints * updated lockfile * prettier * Fixed fields infer issue * Added schema fallback tests * Create soft-pigs-applaud.md
44 lines
908 B
JSON
44 lines
908 B
JSON
{
|
|
"name": "@directus/sdk",
|
|
"version": "15.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"
|
|
],
|
|
"scripts": {
|
|
"build": "NODE_ENV=production tsup",
|
|
"dev": "NODE_ENV=development tsup",
|
|
"test": "vitest"
|
|
},
|
|
"dependencies": {
|
|
"@directus/system-data": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@directus/tsconfig": "workspace:*",
|
|
"@types/node-fetch": "2.6.11",
|
|
"tsup": "8.0.2",
|
|
"typescript": "5.4.5",
|
|
"vitest": "1.3.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
}
|
|
}
|