Files
web/packages/ui/package.json
2026-07-27 21:10:27 -04:00

77 lines
2.0 KiB
JSON

{
"name": "@meshtastic/ui",
"version": "0.1.0",
"license": "GPL-3.0-only",
"repository": {
"type": "git",
"url": "git+https://github.com/meshtastic/web.git"
},
"files": [
"dist",
"!dist/**/*.test.*"
],
"type": "module",
"sideEffects": [
"**/*.css"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./theme/default.css": "./dist/theme/default.css"
},
"scripts": {
"start": "npm run dev",
"dev": "vite dev",
"watch": "vite build --watch",
"build": "vite build && publint",
"typecheck": "tsc -p tsconfig.json --noEmit",
"preview": "vite preview",
"lint": "eslint . --max-warnings 0",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"test": "vitest"
},
"dependencies": {
"@radix-ui/react-collapsible": "^1.1.18",
"@radix-ui/react-dialog": "^1.1.21",
"@radix-ui/react-dropdown-menu": "^2.1.22",
"@radix-ui/react-separator": "^1.1.13",
"@radix-ui/react-slot": "^1.3.1",
"@radix-ui/react-tooltip": "^1.2.14",
"@tanstack/react-router": "^1.170.18",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^1.26.0",
"tailwind-merge": "^3.6.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.3",
"@tailwindcss/vite": "^4.3.3",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"publint": "^0.3.21",
"tailwindcss": "^4.3.3",
"tw-animate-css": "^1.4.0",
"typescript": "^7.0.2",
"vite": "^8.1.5",
"vite-plugin-dts": "^5.0.3",
"vite-plugin-static-copy": "^4.1.1",
"vitest": "^4.1.10"
},
"peerDependencies": {
"@radix-ui/react-slot": ">=1.0.2",
"class-variance-authority": ">=0.7.0",
"react": ">=19",
"react-dom": ">=19",
"tailwind-merge": ">=2.5.0",
"tailwindcss": "^4.1.7"
}
}