@cartbot/vehicle-search-beta 3.0.0

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.
package/package.json ADDED
@@ -0,0 +1,74 @@
1
+ {
2
+ "name": "@cartbot/vehicle-search-beta",
3
+ "version": "3.0.0",
4
+ "type": "module",
5
+ "author": "Partbot",
6
+ "url": "https://vs.partbot.io",
7
+ "description": "Compatible with [Partbot](https://use.partbot.io) connected ecommerce stores and synced products.",
8
+ "private": false,
9
+ "files": [
10
+ "dist/js",
11
+ "dist/css",
12
+ "dist/index.d.ts",
13
+ "README.md"
14
+ ],
15
+ "main": "dist/js/vehicle-search.js",
16
+ "module": "dist/js/vehicle-search.es.js",
17
+ "types": "dist/index.d.ts",
18
+ "exports": {
19
+ ".": {
20
+ "types": "./dist/index.d.ts",
21
+ "import": "./dist/js/vehicle-search.es.js",
22
+ "require": "./dist/js/vehicle-search.js"
23
+ }
24
+ },
25
+ "dependencies": {
26
+ "@headlessui/react": "^2.2.9",
27
+ "@phosphor-icons/react": "^2.1.10",
28
+ "@swc/helpers": "^0.5.17",
29
+ "@tailwindcss/forms": "^0.5.3",
30
+ "clsx": "^2.0.0",
31
+ "dither-plugin": "^1.1.1",
32
+ "fuzzysearch": "^1.0.3",
33
+ "js-cookie": "^3.0.5",
34
+ "lodash": "^4.17.21",
35
+ "meilisearch": "^0.41.0",
36
+ "pluralize": "^8.0.0",
37
+ "posthog-js": "^1.57.2",
38
+ "react": "^18.2.0",
39
+ "react-copy-to-clipboard": "^5.1.0",
40
+ "react-dom": "^18.2.0",
41
+ "react-syntax-highlighter": "^15.5.0",
42
+ "tinycolor2": "^1.5.2",
43
+ "zustand": "^5.0.2"
44
+ },
45
+ "peerDependencies": {
46
+ "react": "^18.2.0",
47
+ "react-dom": "^18.2.0"
48
+ },
49
+ "scripts": {
50
+ "dev": "vite",
51
+ "build": "bun run build:lib && bun run optimize:images && bun run build:site && bun run copy:assets",
52
+ "build:lib": "vite build && vite build -c vite.umd.config.mjs",
53
+ "build:site": "vite build -c vite.site.config.mjs",
54
+ "copy:assets": "mkdir -p dist/fonts && cp -R public/fonts/* dist/fonts/ 2>/dev/null || true && cp public/*.svg public/*.png dist/ 2>/dev/null || true",
55
+ "optimize:images": "node scripts/optimize-images.js",
56
+ "start": "serve dist -l ${PORT:-4173} --no-port-switching --no-clipboard",
57
+ "preview": "vite preview",
58
+ "publish": "npm publish --access public"
59
+ },
60
+ "devDependencies": {
61
+ "@tailwindcss/typography": "^0.5.15",
62
+ "@tailwindcss/vite": "^4.1.16",
63
+ "@vitejs/plugin-react": "^4.3.4",
64
+ "prettier": "^3.2.5",
65
+ "prettier-plugin-tailwindcss": "^0.7.1",
66
+ "serve": "^14.2.4",
67
+ "sharp": "^0.33.5",
68
+ "tailwindcss": "^4.1.16",
69
+ "vite": "^5.0.0"
70
+ },
71
+ "engines": {
72
+ "node": ">=18.0.0 <24.0.0"
73
+ }
74
+ }