UNPKG

@meonode/ui

Version:

A structured approach to component composition, direct CSS-first prop styling, built-in theming, smart prop handling (including raw property pass-through), and dynamic children.

117 lines 3.69 kB
{ "name": "@meonode/ui", "description": "A structured approach to component composition, direct CSS-first prop styling, built-in theming, smart prop handling (including raw property pass-through), and dynamic children.", "version": "0.2.16", "type": "module", "main": "./dist/main.js", "types": "./dist/main.d.ts", "exports": { ".": { "import": "./dist/main.js", "types": "./dist/main.d.ts" }, "./client": { "import": "./dist/client.js", "types": "./dist/client.d.ts" }, "./nextjs-registry": { "import": "./dist/nextjs-registry/index.js", "types": "./dist/nextjs-registry/index.d.ts" } }, "files": [ "dist", "package.json", "LICENSE", "CHANGELOG.md", "README.md" ], "scripts": { "watch:build": "yarn dlx nodemon --watch src --ext ts,tsx,js,json --exec \"yarn build\"", "lint": "eslint --fix", "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --ci", "prebuild": "yarn lint && yarn test", "build": "yarn prebuild && rm -rf ./dist && babel src --out-dir dist --extensions \".ts,.tsx,.js\" && tsgo --project tsconfig.build.json --diagnostics && tsc-alias", "publish:pre": "./prepublish.sh && yarn version -i prerelease && yarn npm publish --tag next", "publish:patch": "./prepublish.sh && yarn version -i patch && yarn npm publish --tag latest", "publish:minor": "./prepublish.sh && yarn version -i minor && yarn npm publish --tag latest", "publish:major": "./prepublish.sh && yarn version -i major && yarn npm publish --tag latest", "prepare": "husky" }, "dependencies": { "@emotion/react": "^11.14.0" }, "devDependencies": { "@babel/cli": "^7.28.3", "@babel/core": "^7.28.4", "@babel/preset-env": "^7.28.3", "@babel/preset-typescript": "^7.27.1", "@emotion/cache": "^11.14.0", "@emotion/jest": "^11.13.0", "@eslint/js": "^9.35.0", "@testing-library/dom": "^10.4.1", "@testing-library/jest-dom": "^6.8.0", "@testing-library/react": "^16.3.0", "@types/jest": "^30.0.0", "@types/react": "^19.1.12", "@types/react-dom": "^19.1.9", "@typescript-eslint/eslint-plugin": "^8.43.0", "@typescript-eslint/parser": "^8.43.0", "@typescript/native-preview": "^7.0.0-dev.20250909.1", "babel-plugin-module-resolver": "^5.0.2", "babel-preset-minify": "0.5.2", "eslint": "^9.35.0", "eslint-plugin-jsdoc": "^55.4.0", "eslint-plugin-prettier": "^5.5.4", "eslint-plugin-unused-imports": "^4.2.0", "husky": "^9.1.7", "jest": "^30.1.3", "jest-environment-jsdom": "^30.1.2", "next": "^15.5.3", "prettier": "^3.6.2", "react": "^19.1.1", "react-dom": "^19.1.1", "ts-jest": "^29.4.1", "tsc-alias": "^1.8.16", "typescript": "^5.9.2", "typescript-eslint": "^8.43.0" }, "packageManager": "yarn@4.9.1", "peerDependencies": { "@emotion/cache": ">=11.14.0", "react": ">=18.3.1", "react-dom": ">=18.3.1" }, "repository": { "type": "git", "url": "git+https://github.com/l7aromeo/meonode-ui.git" }, "homepage": "https://github.com/l7aromeo/meonode-ui#readme", "bugs": { "url": "https://github.com/l7aromeo/meonode-ui/issues" }, "publishConfig": { "access": "public" }, "license": "MIT", "keywords": [ "react", "typescript", "ui-framework", "theme-engine", "jsx-free", "type-safe", "component-composition", "css-in-js", "design-system", "react-components", "dynamic-theming", "frontend", "web-development", "no-jsx", "component-library", "accessible-components", "meonode-ui", "meonode" ] }