-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 866 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 866 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"name": "reqpane",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"zip": "bun run build && cd dist && zip -r ../reqpane.zip . && cd .. && echo '✅ Created: reqpane.zip'",
"preview": "vite preview",
"changeset": "changeset",
"version": "changeset version",
"release": "bun run build && bun run zip"
},
"dependencies": {
"@base-ui-components/react": "^1.0.0-rc.0",
"lucide-react": "^0.562.0",
"react": "^19.2.3",
"react-dom": "^19.2.3"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@tailwindcss/vite": "^4.2.2",
"@types/chrome": "^0.1.32",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"tailwindcss": "^4.2.2",
"typescript": "^5.9.3",
"vite": "^8.0.3"
}
}