mirror of
https://github.com/directus/directus.git
synced 2026-01-15 02:58:11 -05:00
58 lines
1.7 KiB
JSON
58 lines
1.7 KiB
JSON
{
|
|
"name": "@directus/utils",
|
|
"version": "10.0.11",
|
|
"description": "Utilities shared between the Directus packages",
|
|
"homepage": "https://directus.io",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/directus/directus.git",
|
|
"directory": "packages/utils"
|
|
},
|
|
"funding": "https://github.com/directus/directus?sponsor=1",
|
|
"license": "MIT",
|
|
"author": "Rijk van Zanten <rijkvanzanten@me.com>",
|
|
"sideEffects": false,
|
|
"type": "module",
|
|
"exports": {
|
|
".": "./dist/shared/index.js",
|
|
"./node": "./dist/node/index.js",
|
|
"./browser": "./dist/browser/index.js",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"main": "dist/shared/index.js",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "concurrently --group 'pnpm:build:*'",
|
|
"build:browser": "tsup browser/index.ts --tsconfig browser/tsconfig.json --out-dir dist/browser --format=esm --dts",
|
|
"build:node": "tsup node/index.ts --tsconfig node/tsconfig.json --out-dir dist/node --format=esm --dts",
|
|
"build:shared": "tsup shared/index.ts --tsconfig shared/tsconfig.json --out-dir dist/shared --format=esm --dts",
|
|
"dev": "concurrently 'pnpm:build:* --watch'",
|
|
"test": "vitest --watch=false"
|
|
},
|
|
"dependencies": {
|
|
"@directus/constants": "workspace:*",
|
|
"date-fns": "2.30.0",
|
|
"fs-extra": "11.1.1",
|
|
"joi": "17.9.2",
|
|
"lodash-es": "4.17.21",
|
|
"micromustache": "8.0.3",
|
|
"tmp": "0.2.1",
|
|
"vue": "3.3.4"
|
|
},
|
|
"devDependencies": {
|
|
"@directus/tsconfig": "workspace:*",
|
|
"@directus/types": "workspace:*",
|
|
"@types/fs-extra": "11.0.1",
|
|
"@types/lodash-es": "4.17.7",
|
|
"@types/node": "18.16.12",
|
|
"@types/tmp": "0.2.3",
|
|
"@vitest/coverage-c8": "0.31.1",
|
|
"concurrently": "8.2.1",
|
|
"tsup": "7.1.0",
|
|
"typescript": "5.0.4",
|
|
"vitest": "0.31.1"
|
|
}
|
|
}
|