* chore: replace jsx element with react node * fix: review comments * fix: tooltip types update * fix: propel pacakge fix
42 lines
1.1 KiB
JSON
42 lines
1.1 KiB
JSON
{
|
|
"name": "@plane/types",
|
|
"version": "0.28.0",
|
|
"license": "AGPL-3.0",
|
|
"private": true,
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"types": "./dist/index.d.ts",
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.js",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"require": "./dist/index.js",
|
|
"import": "./dist/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"dev": "tsup --watch",
|
|
"build": "tsc --noEmit && tsup --minify",
|
|
"check:lint": "eslint . --max-warnings 36",
|
|
"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"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^18.0.0",
|
|
"react-dom": "^18.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@plane/eslint-config": "*",
|
|
"@plane/typescript-config": "*",
|
|
"@types/react": "18.3.11",
|
|
"@types/react-dom": "18.3.1",
|
|
"tsup": "8.4.0",
|
|
"typescript": "5.8.3"
|
|
}
|
|
}
|