mirror of
https://github.com/directus/directus.git
synced 2026-01-24 11:37:57 -05:00
100 lines
2.6 KiB
JSON
100 lines
2.6 KiB
JSON
{
|
|
"name": "@directus/shared",
|
|
"version": "9.23.1",
|
|
"description": "Code shared between all Directus packages",
|
|
"homepage": "https://directus.io",
|
|
"bugs": {
|
|
"url": "https://github.com/directus/directus/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/directus/directus.git",
|
|
"directory": "packages/shared"
|
|
},
|
|
"funding": "https://github.com/directus/directus?sponsor=1",
|
|
"author": "Nicola Krumschmidt",
|
|
"maintainers": [
|
|
"Rijk van Zanten <rijkvanzanten@me.com>"
|
|
],
|
|
"sideEffects": false,
|
|
"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"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"!**/*.test.{d.ts,js}",
|
|
"!**/*.d.ts.map",
|
|
"{,utils/}*.d.ts"
|
|
],
|
|
"scripts": {
|
|
"build": "concurrently --prefix-colors auto --passthrough-arguments \"pnpm:build:* {@}\"",
|
|
"build:esm": "tsc --project ./tsconfig.json --module ES2015 --outDir ./dist/esm",
|
|
"build:cjs": "tsc --project ./tsconfig.json --module CommonJS --outDir ./dist/cjs",
|
|
"dev": "pnpm build -- -w --preserveWatchOutput --incremental",
|
|
"test": "vitest run",
|
|
"test:coverage": "vitest run --coverage",
|
|
"test:watch": "vitest"
|
|
},
|
|
"dependencies": {
|
|
"axios": "1.3.3",
|
|
"date-fns": "2.29.3",
|
|
"express": "4.18.2",
|
|
"fs-extra": "11.1.0",
|
|
"geojson": "0.5.0",
|
|
"joi": "17.7.1",
|
|
"knex": "2.4.2",
|
|
"knex-schema-inspector": "3.0.1",
|
|
"lodash": "4.17.21",
|
|
"micromustache": "8.0.3",
|
|
"nanoid": "4.0.1",
|
|
"pino": "8.10.0",
|
|
"vue": "3.2.47",
|
|
"vue-i18n": "9.2.2",
|
|
"vue-router": "4.1.6",
|
|
"zod": "3.20.6"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "4.17.17",
|
|
"@types/fs-extra": "11.0.1",
|
|
"@types/geojson": "7946.0.10",
|
|
"@types/lodash": "4.14.191",
|
|
"@types/tmp": "0.2.3",
|
|
"@vue/test-utils": "2.2.10",
|
|
"concurrently": "7.6.0",
|
|
"tmp": "0.2.1",
|
|
"typescript": "4.9.5",
|
|
"vitest": "0.28.5"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|