UNPKG

niva-ui

Version:

A beautiful, minimalistic React + Tailwind UI framework for SaaS applications

133 lines (132 loc) 3.61 kB
{ "name": "niva-ui", "version": "0.1.0", "description": "A beautiful, minimalistic React + Tailwind UI framework for SaaS applications", "main": "./dist/index.js", "module": "./dist/index.esm.js", "types": "./dist/index.d.ts", "bin": { "niva": "./cli/index.js" }, "exports": { ".": { "import": "./dist/index.esm.js", "require": "./dist/index.js", "types": "./dist/index.d.ts" }, "./styles": "./dist/styles.css" }, "files": [ "dist", "README.md" ], "scripts": { "dev": "next dev", "build": "next build", "build:lib": "tsup", "start": "next start", "export": "next export", "test": "vitest", "test:ui": "vitest --ui", "test:coverage": "vitest --coverage", "lint": "next lint", "lint:fix": "next lint --fix", "format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,css,md,mdx}\"", "type-check": "tsc --noEmit", "prepare": "husky install", "changeset": "changeset", "version-packages": "changeset version", "release": "changeset publish", "storybook": "storybook dev -p 6006", "build-storybook": "storybook build", "docs:dev": "next dev", "docs:build": "next build && next export" }, "keywords": [ "react", "ui", "tailwind", "components", "design-system", "saas", "minimalist", "typescript" ], "author": "Niva UI Team", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/niva-ui/niva-ui.git" }, "bugs": { "url": "https://github.com/niva-ui/niva-ui/issues" }, "homepage": "https://niva-ui.dev", "peerDependencies": { "react": ">=16.8.0", "react-dom": ">=16.8.0" }, "dependencies": { "@next/bundle-analyzer": "^15.3.3", "@radix-ui/react-dropdown-menu": "^2.1.15", "@radix-ui/react-slot": "^1.0.2", "class-variance-authority": "^0.7.0", "clsx": "^2.0.0", "commander": "^11.0.0", "lucide-react": "^0.513.0", "next": "^15.3.3", "next-themes": "^0.4.6", "tailwind-merge": "^2.2.0" }, "devDependencies": { "@changesets/cli": "^2.27.1", "@next/eslint-plugin-next": "^15.3.3", "@storybook/addon-essentials": "^7.6.10", "@storybook/addon-interactions": "^7.6.10", "@storybook/addon-links": "^7.6.10", "@storybook/addon-onboarding": "^1.0.11", "@storybook/blocks": "^7.6.10", "@storybook/react": "^7.6.10", "@storybook/react-vite": "^7.6.10", "@storybook/test": "^7.6.10", "@testing-library/jest-dom": "^6.2.0", "@testing-library/react": "^14.1.2", "@testing-library/user-event": "^14.5.2", "@types/node": "^20.19.0", "@types/react": "^18.3.23", "@types/react-dom": "^18.3.7", "@typescript-eslint/eslint-plugin": "^6.19.0", "@typescript-eslint/parser": "^6.19.0", "autoprefixer": "^10.4.17", "eslint": "^8.56.0", "eslint-config-next": "^15.3.3", "eslint-plugin-react-hooks": "^4.6.0", "eslint-plugin-react-refresh": "^0.4.5", "eslint-plugin-storybook": "^0.6.15", "husky": "^8.0.3", "jsdom": "^24.0.0", "lint-staged": "^15.2.0", "postcss": "^8.4.33", "prettier": "^3.2.4", "prettier-plugin-tailwindcss": "^0.5.11", "react": "^18.3.1", "react-dom": "^18.3.1", "storybook": "^7.6.10", "tailwindcss": "^3.4.1", "tsup": "^8.0.1", "typescript": "^5.3.3", "vitest": "^1.2.1" }, "lint-staged": { "*.{ts,tsx,js,jsx}": [ "eslint --fix", "prettier --write" ], "*.{json,css,md}": [ "prettier --write" ] }, "engines": { "node": ">=16.0.0" } }