@aiquants/select-box 0.2.1 → 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +11 -9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aiquants/select-box",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "High-performance select box component for React with virtual scrolling and fuzzy search",
5
5
  "sideEffects": [
6
6
  "**/*.css"
@@ -25,12 +25,12 @@
25
25
  ],
26
26
  "peerDependencies": {
27
27
  "react": "^19.2.7",
28
- "react-dom": "^19.2.7"
28
+ "react-dom": "^19.2.7",
29
+ "@aiquants/fuzzy-search": "^2.0.0",
30
+ "@aiquants/virtualscroll": "^1.18.3"
29
31
  },
30
32
  "dependencies": {
31
- "tailwind-merge": "^3.4.0",
32
- "@aiquants/virtualscroll": "1.18.2",
33
- "@aiquants/fuzzy-search": "2.0.0"
33
+ "tailwind-merge": "^3.4.0"
34
34
  },
35
35
  "devDependencies": {
36
36
  "@heroicons/react": "^2.2.0",
@@ -52,7 +52,9 @@
52
52
  "typescript": "^5.9.3",
53
53
  "vite": "^7.3.0",
54
54
  "vite-plugin-dts": "^4.5.4",
55
- "vitest": "^3.2.4"
55
+ "vitest": "^3.2.4",
56
+ "@aiquants/fuzzy-search": "2.0.0",
57
+ "@aiquants/virtualscroll": "1.18.3"
56
58
  },
57
59
  "keywords": [
58
60
  "react",
@@ -93,8 +95,8 @@
93
95
  "license-check": "pnpm dlx license-checker --production --onlyAllow \"MIT;Apache-2.0;BSD-2-Clause;BSD-3-Clause;ISC;Unlicense\"",
94
96
  "license-check:json": "pnpm dlx license-checker --production --onlyAllow \"MIT;Apache-2.0;BSD-2-Clause;BSD-3-Clause;ISC;Unlicense\" --json",
95
97
  "clean": "rimraf dist",
96
- "publish:patch": "npm version patch && pnpm publish --no-git-checks",
97
- "publish:minor": "npm version minor && pnpm publish --no-git-checks",
98
- "publish:major": "npm version major && pnpm publish --no-git-checks"
98
+ "publish:patch": "pnpm version patch --no-git-checks && pnpm publish --no-git-checks",
99
+ "publish:minor": "pnpm version minor --no-git-checks && pnpm publish --no-git-checks",
100
+ "publish:major": "pnpm version major --no-git-checks && pnpm publish --no-git-checks"
99
101
  }
100
102
  }