mirror of
https://github.com/directus/directus.git
synced 2026-04-03 03:00:39 -04:00
* Update API non-majors * Update major changes * Temp fix for type warning in sdk * Resolve missing new keyword in GraphQLNonNull use * Lock versions in api * Update and lock versions in shared * Update lockfile * Fix build type errors in api * Update app patches/minors * Upgrade major versions * Lock versions * Upgrade root deps * Update packages * Switch from pino-colada to pino-pretty * Update snapshots * Fix globby sync usage * Remove globals from jest config * No ranges * Revert "Remove globals from jest config" This reverts commite249e2c8fe. * Revert "Upgrade root deps" This reverts commit62add28a85. * Update non-jest stuff * We'll keep trying * Update globby to latest minor only * Test on all vendors * Revert test on all vendors * Fix linting * Preserve request log format * Preserve existing timestamp format and allow configuration * Use lodash merge to allow for nested objects Co-authored-by: ian <licitdev@gmail.com>
83 lines
2.2 KiB
JSON
83 lines
2.2 KiB
JSON
{
|
|
"name": "@directus/shared",
|
|
"version": "9.18.1",
|
|
"description": "Code shared between all directus packages.",
|
|
"exports": {
|
|
"./composables": {
|
|
"import": "./dist/esm/composables/index.js",
|
|
"require": "./dist/cjs/composables/index.js"
|
|
},
|
|
"./constants": {
|
|
"import": "./dist/esm/constants/index.js",
|
|
"require": "./dist/cjs/constants/index.js"
|
|
},
|
|
"./exceptions": {
|
|
"import": "./dist/esm/exceptions/index.js",
|
|
"require": "./dist/cjs/exceptions/index.js"
|
|
},
|
|
"./types": {
|
|
"import": "./dist/esm/types/index.js",
|
|
"require": "./dist/cjs/types/index.js"
|
|
},
|
|
"./utils": {
|
|
"import": "./dist/esm/utils/index.js",
|
|
"require": "./dist/cjs/utils/index.js"
|
|
},
|
|
"./utils/browser": {
|
|
"import": "./dist/esm/utils/browser/index.js",
|
|
"require": "./dist/cjs/utils/browser/index.js"
|
|
},
|
|
"./utils/node": {
|
|
"import": "./dist/esm/utils/node/index.js",
|
|
"require": "./dist/cjs/utils/node/index.js"
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"sideEffects": false,
|
|
"scripts": {
|
|
"build": "run-p \"build:* {@}\"",
|
|
"build:esm": "tsc --project ./tsconfig.json --module ES2015 --outDir ./dist/esm",
|
|
"build:cjs": "tsc --project ./tsconfig.json --module CommonJS --outDir ./dist/cjs",
|
|
"cleanup": "rimraf ./dist",
|
|
"dev": "pnpm build -- -w --preserveWatchOutput --incremental",
|
|
"test": "vitest run",
|
|
"test:coverage": "vitest run --coverage",
|
|
"test:watch": "vitest"
|
|
},
|
|
"author": "Nicola Krumschmidt",
|
|
"maintainers": [
|
|
"Rijk van Zanten <rijkvanzanten@me.com>"
|
|
],
|
|
"dependencies": {
|
|
"axios": "1.1.3",
|
|
"date-fns": "2.29.3",
|
|
"express": "4.18.2",
|
|
"fs-extra": "10.1.0",
|
|
"geojson": "0.5.0",
|
|
"joi": "17.6.3",
|
|
"knex": "2.3.0",
|
|
"knex-schema-inspector": "3.0.0",
|
|
"lodash": "4.17.21",
|
|
"micromustache": "8.0.3",
|
|
"nanoid": "4.0.0",
|
|
"pino": "8.6.1",
|
|
"vue": "3.2.41",
|
|
"vue-i18n": "9.2.2",
|
|
"vue-router": "4.1.5"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "4.17.14",
|
|
"@types/fs-extra": "9.0.13",
|
|
"@types/geojson": "7946.0.10",
|
|
"@types/lodash": "4.14.186",
|
|
"@types/pino": "7.0.4",
|
|
"@types/tmp": "0.2.3",
|
|
"c8": "7.12.0",
|
|
"npm-run-all": "4.1.5",
|
|
"rimraf": "3.0.2",
|
|
"tmp": "0.2.1",
|
|
"typescript": "4.8.4",
|
|
"vitest": "0.24.3"
|
|
}
|
|
}
|