reactive-bulma 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +32 -0
  3. package/package.json +56 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2022 Nicolás Omar González Passerino
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,32 @@
1
+ # Reactive bulma ![Reactive bulma version](https://img.shields.io/github/package-json/v/nicolasomar/reactive-bulma?color=success&label=%20&style=flat-square)
2
+ Component library based on React, typescript and bulma
3
+
4
+ ## What do I need?
5
+ Before cloning this repo, I recommend installing the following software:
6
+ - [Node](https://nodejs.org/en/download/) >=12.16.1 to install packages
7
+
8
+ ## Setup
9
+ After cloning the repo, install the node packages in the project's root file.
10
+ ```sh
11
+ git clone https://github.com/NicolasOmar/reactive-bulma.git
12
+ cd reactive-bulma
13
+ npm install
14
+ ```
15
+
16
+ ## How to run it
17
+ To run it's storybook (until `v0.1.0`, it will have an example button only)
18
+ ```sh
19
+ npm start
20
+ ```
21
+ To rebuild the project with your changes
22
+ ```sh
23
+ npm run build
24
+ ```
25
+
26
+ ## Find out more
27
+ | [Project Status](https://github.com/users/NicolasOmar/projects/3) |
28
+ | :--- |
29
+ | Project board for project status tracking
30
+
31
+ ## License
32
+ **MIT**
package/package.json ADDED
@@ -0,0 +1,56 @@
1
+ {
2
+ "name": "reactive-bulma",
3
+ "version": "0.0.1",
4
+ "description": "A typescript-react-based library using bulma",
5
+ "keywords": [
6
+ "typescript",
7
+ "react",
8
+ "bulma",
9
+ "component-library"
10
+ ],
11
+ "author": "Nicolás Omar González Passerino",
12
+ "license": "MIT",
13
+ "homepage": "https://github.com/NicolasOmar/reactive-bulma#readme",
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git+https://github.com/NicolasOmar/reactive-bulma.git"
17
+ },
18
+ "bugs": {
19
+ "url": "https://github.com/NicolasOmar/reactive-bulma/issues"
20
+ },
21
+ "scripts": {
22
+ "start": "start-storybook -p 6006",
23
+ "build": "rollup -c --bundleConfigAsCjs",
24
+ "build-storybook": "build-storybook"
25
+ },
26
+ "devDependencies": {
27
+ "@babel/core": "^7.20.12",
28
+ "@rollup/plugin-commonjs": "^24.0.0",
29
+ "@rollup/plugin-node-resolve": "^15.0.1",
30
+ "@rollup/plugin-typescript": "^10.0.1",
31
+ "@storybook/addon-actions": "^6.5.15",
32
+ "@storybook/addon-essentials": "^6.5.15",
33
+ "@storybook/addon-interactions": "^6.5.15",
34
+ "@storybook/addon-links": "^6.5.15",
35
+ "@storybook/builder-webpack5": "^6.5.15",
36
+ "@storybook/manager-webpack5": "^6.5.15",
37
+ "@storybook/react": "^6.5.15",
38
+ "@storybook/testing-library": "^0.0.13",
39
+ "@types/react": "^18.0.26",
40
+ "babel-loader": "^8.3.0",
41
+ "bulma": "^0.9.4",
42
+ "react": "^18.2.0",
43
+ "react-dom": "^18.2.0",
44
+ "rollup": "^3.9.1",
45
+ "rollup-plugin-dts": "^5.1.0",
46
+ "rollup-plugin-postcss": "^4.0.2",
47
+ "tslib": "^2.4.1",
48
+ "typescript": "^4.9.4"
49
+ },
50
+ "main": "dist/cjs/index.js",
51
+ "module": "dist/esm/index.js",
52
+ "files": [
53
+ "dist"
54
+ ],
55
+ "types": "dist/index.d.ts"
56
+ }