mirror of
https://github.com/makeplane/plane.git
synced 2026-02-09 07:38:52 -06:00
41 lines
1.0 KiB
JSON
41 lines
1.0 KiB
JSON
{
|
|
"name": "@plane/utils",
|
|
"version": "0.27.0",
|
|
"description": "Helper functions shared across multiple apps internally",
|
|
"license": "AGPL-3.0",
|
|
"private": true,
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"files": [
|
|
"dist/**"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup ./src/index.ts --format esm,cjs --dts --external react --minify",
|
|
"lint": "eslint src --ext .ts,.tsx",
|
|
"lint:errors": "eslint src --ext .ts,.tsx --quiet"
|
|
},
|
|
"dependencies": {
|
|
"@plane/constants": "*",
|
|
"@plane/types": "*",
|
|
"clsx": "^2.1.1",
|
|
"date-fns": "^4.1.0",
|
|
"isomorphic-dompurify": "^2.16.0",
|
|
"lodash": "^4.17.21",
|
|
"react": "^18.3.1",
|
|
"tailwind-merge": "^2.5.5",
|
|
"uuid": "^10.0.0",
|
|
"zxcvbn": "^4.4.2"
|
|
},
|
|
"devDependencies": {
|
|
"@plane/eslint-config": "*",
|
|
"@plane/typescript-config": "*",
|
|
"@types/node": "^22.5.4",
|
|
"@types/react": "^18.3.11",
|
|
"@types/uuid": "^9.0.8",
|
|
"@types/zxcvbn": "^4.4.5",
|
|
"tsup": "8.4.0",
|
|
"typescript": "5.8.3"
|
|
}
|
|
}
|