{ "name": "@flare/lumrop", "version": "1.3.0", "description": "lumrop is a versatile npm package that provides a collection of React components, hooks, and utilities designed to simplify and enhance development within the React ecosystem.", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.js", "types": "./dist/esm/index.d.ts", "scripts": { "build": "npm run build:esm && npm run build:cjs", "build:esm": "tsc", "build:cjs": "tsc --module commonjs --outDir dist/cjs", "test": "jest --config jestconfig.json", "format": "prettier --write \"{src,tests}/**/*.{js,ts,jsx,tsx}\"", "lint": "eslint \"{**/*,*}.{js,ts,jsx,tsx}\"", "prepublishOnly": "npm test && npm run lint", "prepush": "npm run build", "preversion": "npm run lint", "version": "npm run format", "push": "npm publish", "push:major": "npm run version:major && npm run push", "push:minor": "npm run version:minor && npm run push", "push:patch": "npm run version:patch && npm run push", "version:major": "npm version major --no-git-tag-version", "version:minor": "npm version minor --no-git-tag-version", "version:patch": "npm version patch --no-git-tag-version" }, "repository": { "type": "git", "url": "https://lab.code-rove.com/gitea/bricks/lumrop" }, "keywords": [ "flare", "lumrop" ], "author": { "name": "Tudor Stanciu", "email": "tudor.stanciu94@gmail.com", "url": "https://lab.code-rove.com/tsp" }, "license": "MIT", "bugs": { "url": "https://lab.code-rove.com/gitea/bricks/lumrop/issues" }, "homepage": "https://lab.code-rove.com/gitea/bricks/lumrop#readme", "files": [ "dist", "src", "LICENSE", "README.md" ], "peerDependencies": { "react": "^18.2.0" }, "devDependencies": { "@eslint/js": "^9.24.0", "@testing-library/react": "^16.2.0", "@types/jest": "^29.5.14", "@types/react": "^19.1.0", "eslint": "^9.24.0", "eslint-plugin-prettier": "^5.2.5", "eslint-plugin-react": "^7.37.5", "eslint-plugin-react-hooks": "^5.2.0", "jest": "^29.7.0", "jest-canvas-mock": "^2.5.2", "jest-environment-jsdom": "^29.7.0", "prettier": "^3.5.3", "react": "^19.1.0", "react-dom": "19.1.0", "ts-jest": "^29.3.1", "typescript": "^5.8.3", "typescript-eslint": "^8.29.0" }, "publishConfig": { "registry": "https://lab.code-rove.com/public-node-registry" } }