Files
directus/packages/utils/package.json
Rijk van Zanten c7d0cd0c74 Move tsconfig package to monorepo (#18659)
* Move tsconfig package to monorepo

* Use local reference to tsconfig
2023-05-19 12:30:45 -04:00

65 lines
1.7 KiB
JSON

{
"name": "@directus/utils",
"version": "10.0.2",
"type": "module",
"sideEffects": false,
"scripts": {
"build": "tsc --project browser/tsconfig.prod.json && tsc --project node/tsconfig.prod.json && tsc --project shared/tsconfig.prod.json",
"dev": "concurrently \"tsc --watch --project browser/tsconfig.json\" \"tsc --watch --project node/tsconfig.json\" \"tsc --watch --project shared/tsconfig.json\"",
"test": "vitest --watch=false"
},
"description": "Utilities shared between the Directus packages",
"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>",
"exports": {
".": {
"types": "./dist/shared/index.d.ts",
"import": "./dist/shared/index.js"
},
"./node": {
"types": "./dist/node/index.d.ts",
"import": "./dist/node/index.js"
},
"./browser": {
"types": "./dist/browser/index.d.ts",
"import": "./dist/browser/index.js"
},
"./package.json": "./package.json"
},
"main": "dist/shared/index.js",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"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.0.1",
"typescript": "5.0.4",
"vitest": "0.31.1"
}
}