mirror of
https://github.com/directus/directus.git
synced 2026-01-09 18:48:02 -05:00
* Dangerously update API deps * Dangerously move app dependencies to pnpm-workspace * Move all dependencies to catalog * Sort catalog * Pnpm update * Use pnpm 10.14 * Update for zod breaking change * Fix unhead breaking change * Downgrade major api upgrades * Downgrade app major upgrades * Fix app tests * Downgrade isolated-vm * Add changeset * Fix template in head * Resolve unhead lang signature * Downgrade unhead * Downgrade keyv/redis It uses a different redis lib under the hood which is incompatible * Resolve import in test * Update and move workspace root dependencies * Update CSS for updated linter rules * Oops * Run formatter * Update rule name * Run prettier * Move utils peer to catalog * Add focus-trap dependency
42 lines
961 B
JSON
42 lines
961 B
JSON
{
|
|
"name": "@directus/stores",
|
|
"version": "1.0.2",
|
|
"description": "Shared Pinia stores used in @directus/app",
|
|
"homepage": "https://directus.io",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/directus/directus.git",
|
|
"directory": "packages/stores"
|
|
},
|
|
"funding": "https://github.com/directus/directus?sponsor=1",
|
|
"license": "MIT",
|
|
"author": "Rijk van Zanten <rijkvanzanten@me.com>",
|
|
"type": "module",
|
|
"exports": {
|
|
".": "./dist/index.js",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"main": "dist/index.js",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup src/index.ts --format=esm --dts",
|
|
"dev": "tsup src/index.ts --format=esm --dts --watch"
|
|
},
|
|
"dependencies": {
|
|
"@vueuse/core": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@directus/tsconfig": "catalog:",
|
|
"pinia": "catalog:",
|
|
"tsup": "catalog:",
|
|
"typescript": "catalog:",
|
|
"vue": "catalog:"
|
|
},
|
|
"peerDependencies": {
|
|
"pinia": "catalog:",
|
|
"vue": "catalog:"
|
|
}
|
|
}
|