mirror of
https://github.com/makeplane/plane
synced 2025-08-07 19:59:33 +00:00
* chore: fixing inconsistent dependies across the platform * fix: fixing peer dependencies * chore: yarn lock regeneration
25 lines
561 B
JSON
25 lines
561 B
JSON
{
|
|
"name": "@plane/helpers",
|
|
"version": "0.23.1",
|
|
"description": "Helper functions shared across multiple apps internally",
|
|
"private": true,
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"files": [
|
|
"dist/**"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup ./index.ts --format esm,cjs --dts --external react --minify"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.5.4",
|
|
"@types/react": "^18.3.11",
|
|
"typescript": "^5.6.2",
|
|
"tsup": "^7.2.0"
|
|
},
|
|
"dependencies": {
|
|
"react": "^18.3.1"
|
|
}
|
|
}
|