mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
98b1a078de
* fix: project layout added and theme fixes * feat: input color picker component added to ui package * fix: layout fixes * fix: conflicts and build issues resolved * fix: layout headers fixes
40 lines
1014 B
JSON
40 lines
1014 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",
|
|
"tailwind-config-custom": "*",
|
|
"tsconfig": "*",
|
|
"tsup": "^5.10.1",
|
|
"typescript": "4.7.4"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"dependencies": {
|
|
"@blueprintjs/core": "^4.16.3",
|
|
"@blueprintjs/popover2": "^1.13.3",
|
|
"@headlessui/react": "^1.7.17",
|
|
"react-color": "^2.19.3"
|
|
}
|
|
}
|