Files
plane/packages/shared-state/package.json

36 lines
1.1 KiB
JSON
Raw Permalink Normal View History

2025-01-14 16:37:42 +05:30
{
"name": "@plane/shared-state",
2025-10-21 19:14:43 +05:30
"version": "1.1.0",
2025-03-04 20:20:38 +05:30
"license": "AGPL-3.0",
2025-01-14 16:37:42 +05:30
"description": "Shared state shared across multiple apps internally",
"private": true,
"main": "./src/index.ts",
"types": "./src/index.ts",
"scripts": {
"check:lint": "eslint . --max-warnings 4",
"check:types": "tsc --noEmit",
"check:format": "prettier --check \"**/*.{ts,tsx,md,json,css,scss}\"",
"fix:lint": "eslint . --fix",
"fix:format": "prettier --write \"**/*.{ts,tsx,md,json,css,scss}\"",
"clean": "rm -rf .turbo && rm -rf .next && rm -rf node_modules && rm -rf dist"
2025-01-14 16:37:42 +05:30
},
"dependencies": {
"@plane/constants": "workspace:*",
"@plane/types": "workspace:*",
"@plane/utils": "workspace:*",
"lodash-es": "catalog:",
"mobx": "catalog:",
"mobx-utils": "catalog:",
"uuid": "catalog:",
2025-01-14 16:37:42 +05:30
"zod": "^3.22.2"
},
"devDependencies": {
"@plane/eslint-config": "workspace:*",
"@plane/typescript-config": "workspace:*",
"@prettier/plugin-oxc": "0.0.4",
"@types/lodash-es": "catalog:",
"@types/node": "catalog:",
"typescript": "catalog:"
2025-01-14 16:37:42 +05:30
}
}