Files
web/packages/ui/package.json
Austin d2cb51d489 Execute oxfmt (#1166)
Ran
pnpm oxfmt .

This should get the web repo aligned so that we can better enforce oxfmt going forward.
2026-06-16 20:30:08 -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.13",
"@radix-ui/react-dialog": "^1.1.16",
"@radix-ui/react-dropdown-menu": "^2.1.17",
"@radix-ui/react-separator": "^1.1.9",
"@radix-ui/react-slot": "^1.2.5",
"@radix-ui/react-tooltip": "^1.2.9",
"@tanstack/react-router": "^1.170.15",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^1.18.0",
"tailwind-merge": "^3.6.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.1",
"@tailwindcss/vite": "^4.3.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"publint": "^0.3.21",
"tailwindcss": "^4.3.1",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.3",
"vite": "^8.0.16",
"vite-plugin-dts": "^5.0.2",
"vite-plugin-static-copy": "^4.1.1",
"vitest": "^4.1.8"
},
"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"
}
}