mirror of
https://github.com/makeplane/plane.git
synced 2025-12-25 16:19:43 +01:00
* [WEB-5473] fix: source map errors * [WEB-5473] chore: run codemod * fix: build errors in editor --------- Co-authored-by: sriramveeraghanta <veeraghanta.sriram@gmail.com>
61 lines
1.7 KiB
JSON
61 lines
1.7 KiB
JSON
{
|
|
"name": "@plane/utils",
|
|
"version": "1.1.0",
|
|
"description": "Helper functions shared across multiple apps internally",
|
|
"license": "AGPL-3.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"scripts": {
|
|
"build": "tsdown",
|
|
"dev": "tsdown --watch",
|
|
"check:lint": "eslint . --max-warnings 20",
|
|
"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 node_modules && rm -rf dist"
|
|
},
|
|
"dependencies": {
|
|
"@plane/constants": "workspace:*",
|
|
"@plane/types": "workspace:*",
|
|
"clsx": "^2.1.1",
|
|
"date-fns": "^4.1.0",
|
|
"dompurify": "3.2.7",
|
|
"hast": "^1.0.0",
|
|
"hast-util-to-mdast": "^10.1.2",
|
|
"lodash-es": "catalog:",
|
|
"lucide-react": "catalog:",
|
|
"mdast": "^3.0.0",
|
|
"react": "catalog:",
|
|
"rehype-parse": "^9.0.1",
|
|
"rehype-remark": "^10.0.1",
|
|
"remark-gfm": "^4.0.1",
|
|
"remark-stringify": "^11.0.0",
|
|
"tailwind-merge": "^2.5.5",
|
|
"unified": "^11.0.5",
|
|
"uuid": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@plane/eslint-config": "workspace:*",
|
|
"@plane/typescript-config": "workspace:*",
|
|
"@prettier/plugin-oxc": "0.0.4",
|
|
"@types/hast": "^3.0.4",
|
|
"@types/lodash-es": "catalog:",
|
|
"@types/mdast": "^4.0.4",
|
|
"@types/node": "catalog:",
|
|
"@types/react": "catalog:",
|
|
"tsdown": "catalog:",
|
|
"typescript": "catalog:"
|
|
},
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.js",
|
|
"types": "./dist/index.d.ts"
|
|
}
|