Files

43 lines
1.2 KiB
JSON
Raw Permalink Normal View History

2025-01-14 16:37:42 +05:30
{
"name": "@plane/shared-state",
2026-04-20 17:20:12 +05:30
"version": "1.3.1",
2025-01-14 16:37:42 +05:30
"private": true,
"description": "Shared state shared across multiple apps internally",
"license": "AGPL-3.0",
2025-12-10 18:35:14 +07:00
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
2026-03-27 17:29:55 +07:00
".": "./dist/index.js",
2025-12-10 18:35:14 +07:00
"./package.json": "./package.json"
},
2025-01-14 16:37:42 +05:30
"scripts": {
2025-12-10 18:35:14 +07:00
"build": "tsdown",
2026-03-27 17:29:55 +07:00
"dev": "tsdown --watch --no-clean",
"check:lint": "oxlint --max-warnings=0 .",
"check:types": "tsc --noEmit",
"check:format": "oxfmt --check .",
"fix:lint": "oxlint --fix .",
"fix:format": "oxfmt .",
"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/typescript-config": "workspace:*",
"@types/lodash-es": "catalog:",
"@types/node": "catalog:",
2025-12-10 18:35:14 +07:00
"tsdown": "catalog:",
"typescript": "catalog:"
2025-01-14 16:37:42 +05:30
}
}