forked from github/plane
35a7d10b8f
* chore: swap input component with plane/ui package * chore: swap textarea component with plane/ui package * chore: swap button component with plane/ui package * chore: button component revamp * fix: button type fix * chore: secondary button revamp * chore: button props updated * chore: swap loader component with plane/ui package * fix: build error fix * chore: button component refactor * chore: code refactor * chore: swap toggle switch component with plane/ui package * chore: swap spinner component with plane/ui package * chore: swap progress bar componenet with plan/ui package * chore: code refactor
38 lines
930 B
JSON
38 lines
930 B
JSON
{
|
|
"name": "@plane/ui",
|
|
"version": "0.0.1",
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"sideEffects": false,
|
|
"license": "MIT",
|
|
"files": [
|
|
"dist/**"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup src/index.tsx --format esm,cjs --dts --external react",
|
|
"dev": "tsup src/index.tsx --format esm,cjs --watch --dts --external react",
|
|
"lint": "eslint src/",
|
|
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.5.2",
|
|
"@types/react": "18.2.0",
|
|
"@types/react-dom": "18.2.0",
|
|
"classnames": "^2.3.2",
|
|
"eslint-config-custom": "*",
|
|
"react": "^18.2.0",
|
|
"tsconfig": "*",
|
|
"tailwind-config-custom": "*",
|
|
"tsup": "^5.10.1",
|
|
"typescript": "4.7.4"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"dependencies": {
|
|
"@headlessui/react": "^1.7.17",
|
|
"clsx": "^2.0.0"
|
|
}
|
|
}
|