mirror of
https://github.com/directus/directus.git
synced 2026-01-24 08:38:07 -05:00
42 lines
1.1 KiB
JSON
42 lines
1.1 KiB
JSON
{
|
|
"name": "@directus/shared",
|
|
"version": "9.0.0-rc.80",
|
|
"description": "Code shared between all directus packages.",
|
|
"exports": {
|
|
"./composables": {
|
|
"import": "./dist/esm/composables/index.js",
|
|
"require": "./dist/cjs/composables/index.js"
|
|
},
|
|
"./utils": {
|
|
"import": "./dist/esm/utils/index.js",
|
|
"require": "./dist/cjs/utils/index.js"
|
|
},
|
|
"./constants": {
|
|
"import": "./dist/esm/constants/index.js",
|
|
"require": "./dist/cjs/constants/index.js"
|
|
},
|
|
"./types": {
|
|
"import": "./dist/esm/types/index.js",
|
|
"require": "./dist/cjs/types/index.js"
|
|
}
|
|
},
|
|
"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": "npm run build -- -- -w --preserveWatchOutput --incremental"
|
|
},
|
|
"author": "Nicola Krumschmidt",
|
|
"gitHead": "24621f3934dc77eb23441331040ed13c676ceffd",
|
|
"dependencies": {
|
|
"fs-extra": "10.0.0",
|
|
"vue": "3.1.2"
|
|
},
|
|
"devDependencies": {
|
|
"npm-run-all": "4.1.5",
|
|
"rimraf": "3.0.2",
|
|
"typescript": "4.3.4"
|
|
}
|
|
}
|