mirror of
https://github.com/directus/directus.git
synced 2026-04-25 03:00:53 -04:00
* Clean-up & unify all package.json files * Sort all package.json files the same way Using 'sort-package-json' * Add funding link to packages
55 lines
1.3 KiB
JSON
55 lines
1.3 KiB
JSON
{
|
|
"name": "@directus/drive",
|
|
"version": "9.20.4",
|
|
"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",
|
|
"cleanup": "run-p cleanup:*",
|
|
"cleanup:dist": "rimraf ./dist",
|
|
"cleanup:coverage": "rimraf ./coverage",
|
|
"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.2.1",
|
|
"npm-run-all": "4.1.5",
|
|
"ts-jest": "29.0.3",
|
|
"typescript": "4.8.4"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|