mirror of
https://github.com/makeplane/plane.git
synced 2026-02-11 00:29:39 -06:00
* feat: adding standard scripts for lint and format check * fix: update packages scripts * fix: adding tsup config to utils package * chore: updated build scripts in logger pacakge
34 lines
943 B
JSON
34 lines
943 B
JSON
{
|
|
"name": "@plane/hooks",
|
|
"version": "0.27.1",
|
|
"license": "AGPL-3.0",
|
|
"description": "React hooks that are 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 --minify",
|
|
"dev": "tsup --watch",
|
|
"check:lint": "eslint . --max-warnings 0",
|
|
"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"
|
|
},
|
|
"dependencies": {
|
|
"react": "^18.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@plane/eslint-config": "*",
|
|
"@types/node": "^22.5.4",
|
|
"@types/react": "^18.3.11",
|
|
"tsup": "8.4.0",
|
|
"typescript": "5.8.3"
|
|
}
|
|
}
|