forked from directus/directus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 934 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "@directus/sdk",
"version": "16.1.1",
"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 --typecheck --watch=false"
},
"dependencies": {
"@directus/system-data": "workspace:*"
},
"devDependencies": {
"@directus/tsconfig": "workspace:*",
"@types/node-fetch": "2.6.11",
"tsup": "8.2.2",
"typescript": "5.4.5",
"vitest": "1.5.3"
},
"engines": {
"node": ">=18.0.0"
}
}