UNPKG

noph-ui

Version:

Noph UI is a modern, powerful UI library for Svelte 5, fully aligned with the Material 3 guidelines. Build stunning, consistent user interfaces with the efficiency and flexibility of Svelte and Google’s Material Design framework.

95 lines 2.41 kB
{ "name": "noph-ui", "version": "0.22.5", "license": "MIT", "homepage": "https://noph.dev", "repository": { "type": "git", "url": "git+https://github.com/cnolte/noph-ui.git" }, "author": { "name": "cnolte" }, "keywords": [ "svelte", "svelte 5", "material", "material 3", "expressive", "material you", "material expressive", "m3", "ui", "frontend", "design-system", "ui-library", "theming" ], "exports": { ".": { "types": "./dist/index.d.ts", "svelte": "./dist/index.js" }, "./icons": { "types": "./dist/icons/index.d.ts", "svelte": "./dist/icons/index.js" }, "./types": { "types": "./dist/types.d.ts" }, "./defaultTheme": { "import": "./dist/themes/defaultTheme.css", "require": "./dist/themes/defaultTheme.css" } }, "sideEffects": [ "**/*.css" ], "files": [ "dist", "!dist/**/*.test.*", "!dist/**/*.spec.*" ], "peerDependencies": { "svelte": "^5.32.1" }, "devDependencies": { "@eslint/js": "^9.33.0", "@material/material-color-utilities": "^0.3.0", "@playwright/test": "^1.54.2", "@sveltejs/adapter-vercel": "^5.9.1", "@sveltejs/kit": "^2.31.1", "@sveltejs/package": "^2.4.1", "@sveltejs/vite-plugin-svelte": "^6.1.2", "@types/eslint": "^9.6.1", "eslint": "^9.33.0", "eslint-config-prettier": "^10.1.8", "eslint-plugin-svelte": "^3.11.0", "globals": "^16.3.0", "prettier": "^3.6.2", "prettier-plugin-svelte": "^3.4.0", "publint": "^0.3.12", "svelte": "^5.38.1", "svelte-check": "^4.3.1", "typescript": "^5.9.2", "typescript-eslint": "^8.39.1", "vite": "^7.1.2", "vitest": "^3.2.4" }, "svelte": "./dist/index.js", "types": "./dist/index.d.ts", "type": "module", "scripts": { "dev": "vite dev", "build": "vite build && npm run package", "preview": "vite preview", "package": "svelte-kit sync && svelte-package && publint", "test": "npm run test:integration && npm run test:unit", "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch", "lint": "prettier --check . && eslint .", "format": "prettier --write .", "test:integration": "playwright test", "test:unit": "vitest" } }