unich-ui-kit-web
Version:
Mantine theme configuration and provider for Unich UI Kit
150 lines (149 loc) • 4.07 kB
JSON
{
"name": "unich-ui-kit-web",
"version": "0.2.8",
"private": false,
"description": "Mantine theme configuration and provider for Unich UI Kit",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./theme": {
"types": "./dist/theme.d.ts",
"import": "./dist/theme.mjs",
"require": "./dist/theme.js"
},
"./provider": {
"types": "./dist/theme/provider.d.ts",
"import": "./dist/theme/provider.mjs",
"require": "./dist/theme/provider.js"
},
"./colors": {
"types": "./dist/theme/colors.d.ts",
"import": "./dist/theme/colors.mjs",
"require": "./dist/theme/colors.js"
},
"./tailwind-colors.css": "./dist/tailwind-colors.css",
"./package.json": "./package.json",
"./styles.css": "./dist/styles.css"
},
"sideEffects": [
"**/*.css"
],
"files": [
"dist/**"
],
"scripts": {
"dev": "next dev",
"start": "next start",
"build": "npm run generate:colors && npm run clean && NODE_ENV=production tsup",
"build:watch": "tsup --watch",
"clean": "rimraf dist",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{ts,tsx,css,md,json}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,css,md,json}\"",
"typecheck": "tsc --noEmit",
"test": "jest --passWithNoTests",
"prepare": "husky install",
"generate:colors": "tsx scripts/generate-tailwind-colors.ts",
"generate:palette": "tsx scripts/generate-palette.ts",
"validate": "npm run lint && npm run format:check && npm run typecheck && npm run test",
"prepublishOnly": "npm run validate && npm run build"
},
"peerDependencies": {
"@mantine/core": "^7.0.0",
"@mantine/hooks": "^7.0.0",
"react": ">=18.0.0",
"react-dom": ">=18.0.0",
"next": ">=13.4.0 || >=14.0.0"
},
"peerDependenciesMeta": {
"@mantine/core": {
"optional": false
},
"@mantine/hooks": {
"optional": false
},
"next": {
"optional": true
}
},
"dependencies": {
"colord": "^2.9.3"
},
"devDependencies": {
"@mantine/core": "^7.17.1",
"@mantine/hooks": "^7.17.1",
"@swc/core": "^1.4.2",
"@swc/jest": "^0.2.36",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"culori": "^4.0.1",
"eslint": "^8.56.0",
"eslint-config-next": "^14.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^9.0.11",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.2",
"next": "^14.0.4",
"postcss": "^8.4.35",
"postcss-preset-mantine": "^1.13.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"tsup": "^8.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{css,md}": "prettier --write"
},
"keywords": [
"react",
"nextjs",
"ui-kit",
"mantine",
"server-components",
"typescript",
"ui-library"
],
"author": {
"name": "Your Name",
"email": "your.email@example.com",
"url": "https://your-website.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/ui-kit-mantine"
},
"bugs": {
"url": "https://github.com/yourusername/ui-kit-mantine/issues"
},
"homepage": "https://github.com/yourusername/ui-kit-mantine#readme",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=16.0.0"
}
}