mirror of
https://github.com/directus/directus.git
synced 2026-01-23 10:38:15 -05:00
40 lines
903 B
JSON
40 lines
903 B
JSON
{
|
|
"name": "@directus/storage",
|
|
"version": "9.24.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "tsc --build",
|
|
"dev": "tsc --watch",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"test:coverage": "vitest run --coverage"
|
|
},
|
|
"description": "Object storage abstraction layer for Directus",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/directus/directus.git",
|
|
"directory": "packages/storage"
|
|
},
|
|
"funding": "https://github.com/directus/directus?sponsor=1",
|
|
"license": "GPL-3.0",
|
|
"author": "Rijk van Zanten <rijkvanzanten@me.com>",
|
|
"exports": {
|
|
".": "./dist/index.js",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"main": "dist/index.js",
|
|
"files": [
|
|
"dist",
|
|
"!**/*.d.ts?(.map)"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"devDependencies": {
|
|
"@directus/tsconfig": "0.0.6",
|
|
"@vitest/coverage-c8": "0.29.3",
|
|
"typescript": "4.9.5",
|
|
"vitest": "0.29.3"
|
|
}
|
|
}
|