UNPKG

react-flipme

Version:
55 lines (54 loc) 1.63 kB
{ "name": "react-flipme", "version": "1.0.3", "description": "React UI library for flipping cards", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", "mode": "development", "files": [ "dist" ], "scripts": { "test": "jest --watchAll", "clean": "shx rm -rf dist && shx echo /dist deleted", "build": "npm run clean && prettier --write src/**/*.ts && npm run build:esm && npm run build:cjs", "build:esm": "tsc", "build:cjs": "tsc --module CommonJS --outDir dist/cjs" }, "keywords": [ "flip", "card", "react" ], "repository": { "type": "git", "url": "git+https://github.com/1Sita1/react-flip.git" }, "bugs": { "url": "https://github.com/1Sita1/react-flip/issues" }, "homepage": "https://github.com/1Sita1/react-flip/blob/main/README.md", "author": "Arsenii Alkhimenko", "license": "MIT", "devDependencies": { "@babel/preset-env": "^7.19.0", "@babel/preset-react": "^7.18.6", "@types/node": "^18.7.14", "@types/react": "^18.0.18", "@types/react-dom": "^18.0.6", "@types/styled-components": "^5.1.26", "babel-jest": "^29.0.2", "jest": "^29.0.2", "prettier": "^2.7.1", "shx": "^0.3.4", "ts-loader": "^9.3.1", "typescript": "^4.8.2" }, "peerDependencies": { "react": "^18.2.0", "react-dom": "^18.2.0" }, "dependencies": { "styled-components": "^5.3.5" } }