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.

93 lines 2.36 kB
{ "name": "noph-ui", "version": "0.16.14", "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", "material you", "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.20.0" }, "devDependencies": { "@eslint/js": "^9.23.0", "@material/material-color-utilities": "^0.3.0", "@playwright/test": "^1.51.1", "@sveltejs/adapter-vercel": "^5.6.3", "@sveltejs/kit": "^2.20.2", "@sveltejs/package": "^2.3.10", "@sveltejs/vite-plugin-svelte": "^5.0.3", "@types/eslint": "^9.6.1", "eslint": "^9.23.0", "eslint-config-prettier": "^10.1.1", "eslint-plugin-svelte": "^3.3.3", "globals": "^16.0.0", "prettier": "^3.5.3", "prettier-plugin-svelte": "^3.3.3", "publint": "^0.3.9", "svelte": "^5.25.3", "svelte-check": "^4.1.5", "typescript": "^5.8.2", "typescript-eslint": "^8.28.0", "vite": "^6.2.3", "vitest": "^3.0.9" }, "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" } }