mirror of
https://github.com/makeplane/plane.git
synced 2026-01-31 02:39:32 -06:00
* fix: esm module imports for live and editor * fix: convert all pacakges to export esm and cjs build * fix: auto export * fix: translation files formatting * fix: convert eslint files to cjs files for supporting current config * fix: code uuid package upgrade --------- Co-authored-by: Aaron Reisman <aaron.reisman@plane.so>
35 lines
1.0 KiB
JSON
35 lines
1.0 KiB
JSON
{
|
|
"name": "@plane/shared-state",
|
|
"version": "1.0.0",
|
|
"license": "AGPL-3.0",
|
|
"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"
|
|
},
|
|
"dependencies": {
|
|
"@plane/constants": "workspace:*",
|
|
"@plane/types": "workspace:*",
|
|
"@plane/utils": "workspace:*",
|
|
"lodash-es": "catalog:",
|
|
"mobx": "catalog:",
|
|
"mobx-utils": "catalog:",
|
|
"uuid": "catalog:",
|
|
"zod": "^3.22.2"
|
|
},
|
|
"devDependencies": {
|
|
"@plane/eslint-config": "workspace:*",
|
|
"@plane/typescript-config": "workspace:*",
|
|
"@types/node": "^22.5.4",
|
|
"@types/lodash-es": "catalog:",
|
|
"typescript": "catalog:"
|
|
}
|
|
}
|