Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
04429a6
chore: align quui minimum release age with velum
stavros-tomas May 27, 2026
726c040
chore: prerelease
stavros-tomas May 27, 2026
aeddae1
fix: trigger prerelease
stavros-tomas May 27, 2026
d7b0b40
chore: move vite to dev dependencies
stavros-tomas May 27, 2026
1554b7b
fix: trigger prerelease
stavros-tomas May 27, 2026
cd947b9
fix: trigger prerelease
stavros-tomas May 27, 2026
df1261c
fix: trigger prerelease
stavros-tomas May 27, 2026
9029ffb
fix: trigger prerelease
stavros-tomas May 27, 2026
63494a1
fix: update quui
stavros-tomas May 27, 2026
3787fa5
chore: remove-prerelease
stavros-tomas May 28, 2026
505e645
bump react and react dom
stavros-tomas May 28, 2026
23a1778
fix: trigger prerelease
stavros-tomas May 28, 2026
5a71138
fix: trigger prerelease
stavros-tomas May 28, 2026
6dba66a
fix: trigger prerelease
stavros-tomas May 28, 2026
fad844a
fix: remove node_modules from dist
stavros-tomas May 28, 2026
c7a4e0a
fix: remove node modules from dist
stavros-tomas May 29, 2026
8ad9be4
fix: entry points
stavros-tomas May 29, 2026
f343788
fix: set importhelpers to false
stavros-tomas May 29, 2026
6acbda3
fix: set TS target to 2018 to eliminate tslib imports in dist
stavros-tomas May 29, 2026
8bd160f
feat: bump react
stavros-tomas May 29, 2026
9a6106d
Merge branch 'main' into NPR-3247-align-quui-minimum-release-age-with…
stavros-tomas Jun 1, 2026
d3dec04
Merge branch 'main' into NPR-3247-align-quui-minimum-release-age-with…
stavros-tomas Jun 2, 2026
8cd03d1
fix: alignement
stavros-tomas Jun 4, 2026
954399c
fix: remove preserveModules
stavros-tomas Jun 10, 2026
10b638e
fix: rollup
stavros-tomas Jun 10, 2026
e1331ad
Revert "fix: rollup"
stavros-tomas Jun 10, 2026
fec141c
fix: text
stavros-tomas Jun 10, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"build-storybook": "rm -rf ./dist && rollup -c && storybook build && cp ./dist/src/utils/syncTheme.js ./storybook-static/syncTheme.js",
"lint": "tsc && eslint src",
"check": "npx tsc -b",
"build": "rm -rf ./dist && rollup -c",
"build": "rm -rf ./dist && rollup -c && rm -rf ./dist/node_modules",
"prepare": "husky"
},
"publishConfig": {
Expand All @@ -23,15 +23,16 @@
"access": "public"
},
"files": [
"dist"
"dist",
"!dist/node_modules"
],
"type": "module",
"main": "./dist/src/index.js",
"main": "./dist/index.js",
"exports": {
".": {
"import": "./dist/src/index.js",
"import": "./dist/index.js",
"types": "./dist/types/src/index.d.ts",
"default": "./dist/src/index.js"
"default": "./dist/index.js"
},
"./tokens.css": "./dist/tokens.css"
},
Expand Down Expand Up @@ -64,7 +65,7 @@
"autoprefixer": "^10.4.16",
"date-fns": "^3.6.0",
"eslint": "^9.39.2",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-import-resolver-typescript": "^4.4.3",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-storybook": "10.3.5",
"husky": "^9.1.7",
Expand All @@ -78,9 +79,9 @@
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-scss": "^3.0.0",
"semantic-release": "^24.2.5",
"sonner": "^2.0.1",
"storybook": "^10.3.5",
"typescript": "^6.0.2"
"typescript": "^6.0.2",
"vite": "^8.0.12"
},
"dependencies": {
"@radix-ui/react-accordion": "^1.1.2",
Expand Down Expand Up @@ -111,16 +112,15 @@
"input-otp": "^1.4.1",
"react-day-picker": "^8.10.0",
"sonner": "^2.0.1",
"tailwind-merge": "^2.6.1",
"vite": "^8.0.13"
"tailwind-merge": "^2.6.1"
},
"peerDependencies": {
"@hookform/resolvers": "^3.9.0",
"@tailwindcss/typography": "^0.5.15",
"@tanstack/react-table": "^8.11.0",
"lucide-react": "^0.468.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"react-hook-form": "^7.50.1",
"react-icons": "^5.3.0",
"tailwindcss": "^3.4.15",
Expand Down
Loading
Loading