@partbot/grid-garage 0.1.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,80 @@
1
+ {
2
+ "name": "@partbot/grid-garage",
3
+ "version": "0.1.0",
4
+ "description": "Garage drawer for Partbot-connected storefronts with plate search, make/model/year selection, and saved vehicles.",
5
+ "type": "module",
6
+ "author": "Partbot",
7
+ "private": false,
8
+ "files": [
9
+ "dist/js",
10
+ "dist/css",
11
+ "dist/index.d.ts",
12
+ "README.md"
13
+ ],
14
+ "main": "dist/js/vehicle-garage.js",
15
+ "module": "dist/js/vehicle-garage.es.js",
16
+ "types": "dist/index.d.ts",
17
+ "exports": {
18
+ ".": {
19
+ "types": "./dist/index.d.ts",
20
+ "import": "./dist/js/vehicle-garage.es.js",
21
+ "require": "./dist/js/vehicle-garage.js"
22
+ },
23
+ "./dist/css/vehicle-garage.css": "./dist/css/vehicle-garage.css"
24
+ },
25
+ "scripts": {
26
+ "dev": "vite",
27
+ "build": "vite build",
28
+ "build:demo": "vite build --config vite.demo.config.ts --outDir dist-demo",
29
+ "lint": "eslint .",
30
+ "format": "prettier --write \"**/*.{ts,tsx}\"",
31
+ "typecheck": "tsc --noEmit",
32
+ "preview": "vite preview",
33
+ "start": "node scripts/serve-demo.mjs",
34
+ "test": "vitest run",
35
+ "test:watch": "vitest",
36
+ "release": "npm publish --access public"
37
+ },
38
+ "dependencies": {
39
+ "@phosphor-icons/react": "^2.1.10",
40
+ "class-variance-authority": "^0.7.1",
41
+ "clsx": "^2.1.1",
42
+ "dompurify": "^3.2.4",
43
+ "js-cookie": "^3.0.5",
44
+ "meilisearch": "^0.53.0",
45
+ "radix-ui": "^1.4.3",
46
+ "react": "^18.2.0",
47
+ "react-dom": "^18.2.0",
48
+ "tailwind-merge": "^3.5.0"
49
+ },
50
+ "peerDependencies": {
51
+ "react": "^18.2.0",
52
+ "react-dom": "^18.2.0"
53
+ },
54
+ "devDependencies": {
55
+ "@eslint/js": "^9.39.4",
56
+ "@testing-library/jest-dom": "^6.9.1",
57
+ "@testing-library/react": "^16.3.0",
58
+ "@testing-library/user-event": "^14.6.1",
59
+ "@tailwindcss/vite": "^4.3.0",
60
+ "@types/js-cookie": "^3.0.6",
61
+ "@types/node": "^24.12.0",
62
+ "@types/react": "^18.3.18",
63
+ "@types/react-dom": "^18.3.5",
64
+ "@vitejs/plugin-react": "^6.0.1",
65
+ "eslint": "^9.39.4",
66
+ "eslint-plugin-react-hooks": "^7.0.1",
67
+ "eslint-plugin-react-refresh": "^0.5.2",
68
+ "globals": "^16.5.0",
69
+ "jsdom": "^26.1.0",
70
+ "prettier": "^3.8.1",
71
+ "prettier-plugin-tailwindcss": "^0.7.2",
72
+ "tailwindcss": "^4.3.0",
73
+ "tw-animate-css": "^1.4.0",
74
+ "typescript": "~5.9.3",
75
+ "typescript-eslint": "^8.57.1",
76
+ "vite": "^8.0.11",
77
+ "vite-plugin-dts": "^5.0.0",
78
+ "vitest": "^4.1.5"
79
+ }
80
+ }