Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

bootstrap-mireco

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bootstrap-mireco - npm Package Compare versions

Comparing version 0.0.3 to 1.0.0

dist/index.css

58

package.json
{
"name": "bootstrap-mireco",
"version": "0.0.3",
"version": "1.0.0",
"description": "Mireco wrapped in bootstrap styles",
"main": "main.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "git@github.com:bor3ham/bootstrap-mireco.git",

@@ -11,36 +12,35 @@ "author": "Michael Boreham <bor3ham@gmail.com>",

"scripts": {
"publish:demo": "git branch -D gh-pages && git push origin --delete gh-pages; git checkout -b gh-pages && cd demo && yarn && yarn build && cd .. && git add . && git add -f demo/dist && git add -f demo/node_modules/uptick-demo-site/dist && git commit -m \"Demo site build\" && git push origin gh-pages && git checkout master && git push origin `git subtree split --prefix demo gh-pages`:gh-pages --force",
"build:js": "./node_modules/.bin/webpack --config webpack.build.js",
"watch:js": "./node_modules/.bin/webpack --config webpack.dev.js --watch",
"build:css": "./node_modules/.bin/stylus src/index.styl -o dist/bootstrap-mireco.css",
"watch:css": "./node_modules/.bin/stylus src/index.styl -o dist/bootstrap-mireco.css --watch",
"watch": "./node_modules/.bin/concurrently \"npm run watch:js\" \"npm run watch:css\"",
"build": "npm run build:js && npm run build:css",
"lint": "./node_modules/.bin/eslint \"src/**/*.ts*\"",
"build": "node scripts/build.js",
"watch": "node scripts/watch.js",
"publish:demo": "git branch -D gh-pages && git push origin --delete gh-pages; git checkout -b gh-pages && cd demo && npm install && npm run build && cd .. && git add . && git add -f demo/dist && git add -f demo/node_modules/uptick-demo-site/dist && git commit -m \"Demo site build\" && git push origin gh-pages && git checkout master && git push origin `git subtree split --prefix demo gh-pages`:gh-pages --force",
"prepare": "npm run build"
},
"dependencies": {
"mireco": "^0.1.2"
},
"peerDependencies": {
"react": "~16.8.6",
"react-dom": "~16.8.6"
"react": "^16.8.0 || ^17.0.2 || ^18.2.0",
"react-dom": "^16.8.0 || ^17.0.2 || ^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"circular-dependency-plugin": "^5.2.0",
"@types/react": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"concurrently": "^5.2.0",
"eslint": "^6.4.0",
"eslint-plugin-react": "^7.14.3",
"peer-deps-externals-webpack-plugin": "^1.0.4",
"stylus": "^0.54.7",
"webpack": "^4.41.6",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.11"
"deep-equal": "^2.2.1",
"esbuild": "^0.17.19",
"esbuild-stylus-loader": "^0.4.2",
"eslint": "^8.42.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"typescript": "^5.0.4"
},
"dependencies": {
"classnames": "^2.3.2",
"mireco": "^1.0.5"
}
}

@@ -1,2 +0,34 @@

# bootstrap-mireco
Mireco wrapped in bootstrap styles
# Bootstrap Mireco
Mireco pre-wrapped in bootstrap styles for your convenience.
Check out the [live demo demo page here][1].
For more information on Mireco, head over to its [project page here][2].
## Installation
- Install bootstrap in your project, ensuring that the bootstrap css is loaded
- Install this package using your package manager of choice eg: `npm install bootstrap-mireco`
- Load the release css file `node_modules/bootstrap-mireco/dist/index.css` in your project
- Use like you would mireco:
```
import React, { useState } from 'react'
import { Text } from 'bootstrap-mireco'
export const Form = () => {
const [name, setName] = useState('')
return (
<Text
value={name}
onChange={setName}
placeholder="Enter your name"
block
/>
)
}
```
[1]: https://bor3ham.github.io/bootstrap-mireco/
[2]: https://github.com/bor3ham/mireco/

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc