{"_id":"@ajarbelajar/styles","name":"@ajarbelajar/styles","dist-tags":{"latest":"1.1.1"},"versions":{"1.1.1":{"name":"@ajarbelajar/styles","version":"1.1.1","main":"dist/styles.cjs.js","module":"dist/styles.esm.js","types":"dist/styles.cjs.d.ts","repository":{"type":"git","url":"git+ssh://git@github.com/dedeard/ab-styles.git"},"author":{"name":"Dede ard","email":"me@dedeard.my.id"},"license":"MIT","publishConfig":{"access":"public"},"sideEffects":false,"scripts":{"commit":"git-cz","docz:dev":"docz dev","docz:build":"docz build","docz:serve":"docz build && docz serve","lint":"eslint src --ext .ts,.tsx","lint:ci":"yarn lint --format junit -o reports/eslint/results.json","lint:fix":"yarn lint --fix","test":"jest","test:ci":"jest --ci --coverage --runInBand --json --outputFile=reports/jest/results.json","typescript":"tsc --noEmit","build":"NODE_ENV=production preconstruct build","prepublishOnly":"yarn build","release":"semantic-release","prepare":"husky install"},"preconstruct":{"globals":{"react":"React","react-dom":"ReactDOM","@emotion/styled":"styled","@emotion/react":"css"},"distFilenameStrategy":"unscoped-package-name"},"config":{"commitizen":{"path":"cz-conventional-changelog"}},"resolutions":{"get-pkg-repo":"4.1.1","hosted-git-info":"^2.1.4"},"dependencies":{"@emotion/is-prop-valid":"^1.1.3"},"devDependencies":{"@babel/eslint-parser":"^7.18.2","@babel/preset-env":"7.18.6","@babel/preset-typescript":"7.18.6","@commitlint/cli":"17.0.3","@commitlint/config-conventional":"17.0.3","@emotion/babel-plugin":"^11.9.2","@emotion/cache":"^11.11.0","@emotion/eslint-plugin":"^11.7.0","@emotion/jest":"^11.9.3","@emotion/react":"^11.9.3","@emotion/styled":"^11.9.3","@preconstruct/cli":"2.1.7","@semantic-release/changelog":"^6.0.1","@semantic-release/commit-analyzer":"9.0.2","@semantic-release/github":"8.0.5","@semantic-release/npm":"9.0.1","@semantic-release/release-notes-generator":"10.0.3","@swc/core":"^1.2.210","@swc/jest":"^0.2.21","@testing-library/jest-dom":"5.16.4","@testing-library/react":"13.3.0","@types/jest":"28.1.4","@typescript-eslint/eslint-plugin":"5.30.5","@typescript-eslint/parser":"5.30.5","babel-jest":"28.1.2","babel-preset-gatsby":"^2.18.0","cz-conventional-changelog":"3.3.0","docz":"2.3.1","eslint":"8.19.0","eslint-config-react-app":"7.0.1","eslint-plugin-prettier":"4.2.1","husky":"^8.0.1","jest":"28.1.2","jest-environment-jsdom":"^28.1.2","lint-staged":"13.0.3","prettier":"2.7.1","pretty-quick":"3.1.3","react":"^18.2.0","react-dom":"^18.2.0","semantic-release":"19.0.3","stylelint":"14.9.1","ts-jest":"28.0.5","typescript":"4.7.4"},"peerDependencies":{"@emotion/cache":"^11.11.0","@emotion/react":"^11.9.3","@emotion/styled":"^11.9.3","react":"^18.2.0","react-dom":"^18.2.0"},"gitHead":"0f1e89a3670b1a030931b8f001da4d4529e9013f","description":"A responsive (mobile-first) grid system built with emotion.","bugs":{"url":"https://github.com/dedeard/ab-styles/issues"},"homepage":"https://github.com/dedeard/ab-styles#readme","_id":"@ajarbelajar/styles@1.1.1","_nodeVersion":"14.21.3","_npmVersion":"8.13.2","dist":{"integrity":"sha512-Kvj3FwisiBS1g+IUan6WUcQLPoDtoq3ITdFt8D/aDKVlLi5rI/no0P8GF9B1+NZa/KCxZdeN8DEp8Jajhdf9+w==","shasum":"1b2834a29b2af942a42a5b92c3826bb599b30273","tarball":"https://registry.npmjs.org/@ajarbelajar/styles/-/styles-1.1.1.tgz","fileCount":34,"unpackedSize":107026,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDywMjiOnKCWMJBAahEkXRqeRV45O50nI1e1AQBLcJi6AiBLnsRFbOZYPeBSA+z+ZEPBczMJ9u2EENr0KqcvcqBEZw=="}]},"_npmUser":{"name":"dedeardiansya","email":"dedeariansya1@gmail.com"},"directories":{},"maintainers":[{"name":"dedeardiansya","email":"dedeariansya1@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/styles_1.1.1_1694354205801_0.2962484275071924"},"_hasShrinkwrap":false}},"time":{"created":"2023-09-10T13:56:45.689Z","1.1.1":"2023-09-10T13:56:45.972Z","modified":"2023-09-10T13:56:46.274Z"},"maintainers":[{"name":"dedeardiansya","email":"dedeariansya1@gmail.com"}],"description":"A responsive (mobile-first) grid system built with emotion.","homepage":"https://github.com/dedeard/ab-styles#readme","repository":{"type":"git","url":"git+ssh://git@github.com/dedeard/ab-styles.git"},"author":{"name":"Dede ard","email":"me@dedeard.my.id"},"bugs":{"url":"https://github.com/dedeard/ab-styles/issues"},"license":"MIT","readme":"# Emotion grid\n\nA responsive (mobile-first) grid system built with emotion.\n\n## Quick start\n\n### Installation\n\nYou can use **yarn** or **npm**.\n\n> Emotion is used has peerDependencie, so you need install to.\n\n```bash\nyarn add @emotion/react @emotion/styled @mverissimoo/emotion-grid\n```\n\n### Usage\n\n```jsx\nimport { Container, Row, Col } from '@mverissimoo/emotion-grid';\n\nfunction Page() {\n  return (\n    <Container>\n      <Row>\n        <Col xs={4} md={6} xl={12}>\n          Col\n        </Col>\n        <Col xs={4} md={6} xl={12}>\n          Col\n        </Col>\n      </Row>\n    </Container>\n  );\n}\n\nexport default Page;\n```\n\n## Development\n\n```bash\nyarn docz:dev\n```\n\n## Looking for docs\n\nYou can check [here](https://emotion-grid.netlify.app/), guides and API reference.\n\n## Built with\n\n- [Typescript](https://www.typescriptlang.org/)\n- [Emotion](https://emotion.sh/docs/introduction)\n- [Docz](https://www.docz.site/)\n- [Preconstruct](https://preconstruct.tools/)\n\n## Contributing\n\nFeel like contributing? That's awesome! We have a [contributing guide](https://github.com/mverissimo/emotion-grid/blob/master/CONTRIBUTING.md) to help guide you.\n","readmeFilename":"README.md"}