UNPKG

react-circular-menu

Version:
63 lines (62 loc) 1.74 kB
{ "name": "react-circular-menu", "version": "2.4.22", "description": "Circle menu component for React.", "author": "Fawad Ali <m.fawaadali98@gmail.com>", "license": "Apache-2.0", "homepage": "https://github.com/9inpachi/react-circular-menu#readme", "repository": { "type": "git", "url": "git+https://github.com/9inpachi/react-circular-menu.git" }, "keywords": [ "react", "circle", "menu", "circular", "list" ], "files": [ "dist" ], "bugs": { "url": "https://github.com/9inpachi/react-circular-menu/issues" }, "main": "./dist/cjs/index.js", "module": "./dist/esm/index.js", "types": "./dist/types/index.d.ts", "exports": { ".": { "types": "./dist/types/index.d.ts", "import": "./dist/esm/index.js", "require": "./dist/cjs/index.js" } }, "scripts": { "clean": "rm -rf ./dist", "tsc": "tsc", "prepublishOnly": "yarn build", "dev": "yarn clean && tsc --watch", "build": "yarn clean && yarn build:cjs && yarn build:esm && yarn build:types", "build:cjs": "yarn tsc --module commonjs --outDir ./dist/cjs/ --declaration false", "build:esm": "yarn tsc --module es6 --outDir ./dist/esm/ --declaration false", "build:types": "yarn tsc --emitDeclarationOnly true --declarationDir ./dist/types" }, "peerDependencies": { "react": ">= 16", "react-dom": ">= 16", "styled-components": ">= 4" }, "devDependencies": { "@types/node": "^24.2.1", "@types/react": "^18.3.12", "@types/react-dom": "^18.3.1", "@types/styled-components": "^5.1.34", "prettier": "^3.6.2", "styled-components": "^6.1.18", "typescript": "^5.9.2" }, "eslintConfig": { "extends": "react-app" } }