Files
directus/packages/drive/package.json
rijkvanzanten d6b8e5963d v9.21.2
2022-11-28 15:44:12 -05:00

51 lines
1.1 KiB
JSON

{
"name": "@directus/drive",
"version": "9.21.2",
"description": "Object storage abstraction layer for Directus",
"homepage": "https://directus.io",
"bugs": {
"url": "https://github.com/directus/directus/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/directus/directus.git",
"directory": "packages/drive"
},
"funding": "https://github.com/directus/directus?sponsor=1",
"license": "MIT",
"contributors": [
"Rijk van Zanten <rijkvanzanten@me.com>"
],
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"main": "dist/index.js",
"files": [
"dist",
"!**/*.d.ts?(.map)"
],
"scripts": {
"build": "tsc --project ./tsconfig.json",
"test:watch": "jest --coverage --watchAll",
"test": "jest --coverage",
"dev": "pnpm build -w --preserveWatchOutput --incremental"
},
"dependencies": {
"fs-extra": "10.1.0",
"node-exceptions": "4.0.1"
},
"devDependencies": {
"@types/fs-extra": "9.0.13",
"@types/jest": "29.2.0",
"@types/node": "18.11.2",
"dotenv": "16.0.3",
"jest": "29.3.1",
"ts-jest": "29.0.3",
"typescript": "4.9.3"
},
"publishConfig": {
"access": "public"
}
}