reactive-bulma 4.3.7 → 4.3.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +133 -133
package/README.md CHANGED
@@ -34,7 +34,7 @@ Component library based on React, Bulma, Typescript and Vite
34
34
  After studying [an Udemy course about Typescript](https://github.com/NicolasOmar/typescript-practice), I wanted to start a new project to practice my new knowledge in a meaningful tool. Therefore, I began this project to understand how to create a component library and investigate the best ways to maintain and nourish it as any professional-level alternatives.
35
35
 
36
36
  Now I have finished (Jan 31th) [the last story](https://github.com/NicolasOmar/reactive-bulma/issues/80) related to my proposed roadmap; I will change the repo's objectives to the following:
37
- - Check every new issues raised by users who found new bugs (of any kind) or related to new components or feature improvements of the existing ones.
37
+ - Check every new issue raised by users who found new bugs (of any kind) or related to new components or feature improvements of the existing ones.
38
38
  - Update dependencies every week, creating alongside its related PR, branch, and PR to maintain track of those updates.
39
39
  - Include ReactiveBulma's components as part of my full-stack app [MyPets](https://github.com/NicolasOmar/my-pets), where I now have code that I can get rid of and, in that process, find new opportunities to enhance components' usability.
40
40
 
package/package.json CHANGED
@@ -1,133 +1,133 @@
1
- {
2
- "name": "reactive-bulma",
3
- "version": "4.3.7",
4
- "type": "module",
5
- "description": "A component library based on React, Bulma, Typescript and Vite",
6
- "keywords": [
7
- "typescript",
8
- "react",
9
- "bulma",
10
- "vite",
11
- "semantic-release",
12
- "jest",
13
- "prettier",
14
- "eslint",
15
- "husky",
16
- "storybook",
17
- "component-library"
18
- ],
19
- "author": "Nicolás Omar González Passerino",
20
- "license": "MIT",
21
- "homepage": "https://reactivebulma.netlify.app",
22
- "repository": {
23
- "type": "git",
24
- "url": "git+https://github.com/NicolasOmar/reactive-bulma.git"
25
- },
26
- "bugs": {
27
- "url": "https://github.com/NicolasOmar/reactive-bulma/issues"
28
- },
29
- "main": "dist/index.js",
30
- "types": "dist/index.d.ts",
31
- "files": [
32
- "dist"
33
- ],
34
- "scripts": {
35
- "start": "storybook dev -p 6006",
36
- "start:cli": "npm start -- --no-open",
37
- "test": "jest --watchAll=false --verbose",
38
- "test:ci": "npm test -- --coverage",
39
- "test:diff": "npm run test:ci -- -o",
40
- "lint": "eslint",
41
- "prettier": "prettier src/**/*.{tsx,ts} --write",
42
- "prettier:ci": "prettier src/**/*.{tsx,ts} --check",
43
- "lint-staged": "lint-staged -v",
44
- "setup": "npm ci && husky",
45
- "compile": "tsc -b",
46
- "build": "npm run compile && vite build",
47
- "build:storybook": "storybook build",
48
- "prepare": "npm run build",
49
- "semantic-release": "semantic-release",
50
- "create": "hygen component new",
51
- "update": "npm run update:deps && npm run update:doctor && npm run update:storybook",
52
- "update:deps": "ncu -i --format group",
53
- "update:storybook": "npx storybook@latest upgrade && npm run build:storybook",
54
- "update:doctor": "npm run prettier:ci && npm run lint && npm run test && npm run build"
55
- },
56
- "peerDependencies": {
57
- "react": "^18.3.1",
58
- "react-dom": "^18.3.1"
59
- },
60
- "devDependencies": {
61
- "@babel/core": "^7.26.0",
62
- "@babel/preset-env": "^7.26.0",
63
- "@babel/preset-react": "^7.26.3",
64
- "@babel/preset-typescript": "^7.26.0",
65
- "@eslint/compat": "^1.2.5",
66
- "@eslint/js": "^9.18.0",
67
- "@mdi/font": "^7.4.47",
68
- "@semantic-release/changelog": "^6.0.3",
69
- "@semantic-release/commit-analyzer": "^13.0.1",
70
- "@semantic-release/exec": "^6.0.3",
71
- "@semantic-release/git": "^10.0.1",
72
- "@semantic-release/github": "^11.0.1",
73
- "@semantic-release/npm": "^12.0.1",
74
- "@semantic-release/release-notes-generator": "^14.0.3",
75
- "@storybook/addon-essentials": "^8.4.7",
76
- "@storybook/addon-interactions": "^8.4.7",
77
- "@storybook/addon-links": "^8.4.7",
78
- "@storybook/addon-onboarding": "^8.4.7",
79
- "@storybook/blocks": "^8.4.7",
80
- "@storybook/react": "^8.4.7",
81
- "@storybook/react-vite": "^8.4.7",
82
- "@storybook/test": "^8.4.7",
83
- "@testing-library/jest-dom": "^6.6.3",
84
- "@testing-library/react": "^16.1.0",
85
- "@testing-library/user-event": "^14.5.2",
86
- "@types/css-modules": "^1.0.5",
87
- "@types/jest": "^29.5.14",
88
- "@types/node": "^22.10.5",
89
- "@types/react": "^19.0.5",
90
- "@types/react-dom": "^19.0.3",
91
- "@typescript-eslint/eslint-plugin": "^8.19.1",
92
- "@typescript-eslint/parser": "^8.19.1",
93
- "@vitejs/plugin-react": "^4.3.4",
94
- "babel-jest": "^29.7.0",
95
- "babel-loader": "^9.2.1",
96
- "bulma": "^0.9.4",
97
- "eslint": "^9.18.0",
98
- "eslint-config-prettier": "^9.1.0",
99
- "eslint-plugin-react": "^7.37.3",
100
- "eslint-plugin-react-hooks": "^5.1.0",
101
- "eslint-plugin-react-refresh": "^0.4.18",
102
- "eslint-plugin-storybook": "^0.11.2",
103
- "glob": "^11.0.1",
104
- "globals": "^15.14.0",
105
- "husky": "^9.1.7",
106
- "hygen": "^6.2.11",
107
- "jest": "^29.7.0",
108
- "jest-environment-jsdom": "^29.7.0",
109
- "lint-staged": "^15.3.0",
110
- "npm-check-updates": "^17.1.13",
111
- "prettier": "^3.4.2",
112
- "react": "^18.3.1",
113
- "react-dom": "^18.3.1",
114
- "semantic-release": "^24.2.1",
115
- "storybook": "^8.4.7",
116
- "tslib": "^2.8.1",
117
- "typescript": "~5.7.3",
118
- "typescript-eslint": "^8.19.1",
119
- "vite": "^6.0.7",
120
- "vite-plugin-dts": "^4.5.0"
121
- },
122
- "lint-staged": {
123
- "src/**/*.(ts|tsx)": [
124
- "prettier --write",
125
- "eslint"
126
- ]
127
- },
128
- "eslintConfig": {
129
- "extends": [
130
- "plugin:storybook/recommended"
131
- ]
132
- }
133
- }
1
+ {
2
+ "name": "reactive-bulma",
3
+ "version": "4.3.9",
4
+ "type": "module",
5
+ "description": "A component library based on React, Bulma, Typescript and Vite",
6
+ "keywords": [
7
+ "typescript",
8
+ "react",
9
+ "bulma",
10
+ "vite",
11
+ "semantic-release",
12
+ "jest",
13
+ "prettier",
14
+ "eslint",
15
+ "husky",
16
+ "storybook",
17
+ "component-library"
18
+ ],
19
+ "author": "Nicolás Omar González Passerino",
20
+ "license": "MIT",
21
+ "homepage": "https://reactivebulma.netlify.app",
22
+ "repository": {
23
+ "type": "git",
24
+ "url": "git+https://github.com/NicolasOmar/reactive-bulma.git"
25
+ },
26
+ "bugs": {
27
+ "url": "https://github.com/NicolasOmar/reactive-bulma/issues"
28
+ },
29
+ "main": "dist/index.js",
30
+ "types": "dist/index.d.ts",
31
+ "files": [
32
+ "dist"
33
+ ],
34
+ "scripts": {
35
+ "start": "storybook dev -p 6006",
36
+ "start:cli": "npm start -- --no-open",
37
+ "test": "jest --watchAll=false --verbose",
38
+ "test:ci": "npm test -- --coverage",
39
+ "test:diff": "npm run test:ci -- -o",
40
+ "lint": "eslint",
41
+ "prettier": "prettier src/**/*.{tsx,ts} --write",
42
+ "prettier:ci": "prettier src/**/*.{tsx,ts} --check",
43
+ "lint-staged": "lint-staged -v",
44
+ "setup": "npm ci && husky",
45
+ "compile": "tsc -b",
46
+ "build": "npm run compile && vite build",
47
+ "build:storybook": "storybook build",
48
+ "prepare": "npm run build",
49
+ "semantic-release": "semantic-release",
50
+ "create": "hygen component new",
51
+ "update": "npm run update:deps && npm run update:doctor && npm run update:storybook",
52
+ "update:deps": "ncu -i --format group",
53
+ "update:storybook": "npx storybook@latest upgrade && npm run build:storybook",
54
+ "update:doctor": "npm run prettier:ci && npm run lint && npm run test && npm run build"
55
+ },
56
+ "peerDependencies": {
57
+ "react": "^18.3.1",
58
+ "react-dom": "^18.3.1"
59
+ },
60
+ "devDependencies": {
61
+ "@babel/core": "^7.26.7",
62
+ "@babel/preset-env": "^7.26.7",
63
+ "@babel/preset-react": "^7.26.3",
64
+ "@babel/preset-typescript": "^7.26.0",
65
+ "@eslint/compat": "^1.2.5",
66
+ "@eslint/js": "^9.19.0",
67
+ "@mdi/font": "^7.4.47",
68
+ "@semantic-release/changelog": "^6.0.3",
69
+ "@semantic-release/commit-analyzer": "^13.0.1",
70
+ "@semantic-release/exec": "^6.0.3",
71
+ "@semantic-release/git": "^10.0.1",
72
+ "@semantic-release/github": "^11.0.1",
73
+ "@semantic-release/npm": "^12.0.1",
74
+ "@semantic-release/release-notes-generator": "^14.0.3",
75
+ "@storybook/addon-essentials": "^8.5.2",
76
+ "@storybook/addon-interactions": "^8.5.2",
77
+ "@storybook/addon-links": "^8.5.2",
78
+ "@storybook/addon-onboarding": "^8.5.2",
79
+ "@storybook/blocks": "^8.5.2",
80
+ "@storybook/react": "^8.5.2",
81
+ "@storybook/react-vite": "^8.5.2",
82
+ "@storybook/test": "^8.5.2",
83
+ "@testing-library/jest-dom": "^6.6.3",
84
+ "@testing-library/react": "^16.2.0",
85
+ "@testing-library/user-event": "^14.6.1",
86
+ "@types/css-modules": "^1.0.5",
87
+ "@types/jest": "^29.5.14",
88
+ "@types/node": "^22.10.10",
89
+ "@types/react": "^19.0.8",
90
+ "@types/react-dom": "^19.0.3",
91
+ "@typescript-eslint/eslint-plugin": "^8.21.0",
92
+ "@typescript-eslint/parser": "^8.21.0",
93
+ "@vitejs/plugin-react": "^4.3.4",
94
+ "babel-jest": "^29.7.0",
95
+ "babel-loader": "^9.2.1",
96
+ "bulma": "^0.9.4",
97
+ "eslint": "^9.19.0",
98
+ "eslint-config-prettier": "^10.0.1",
99
+ "eslint-plugin-react": "^7.37.4",
100
+ "eslint-plugin-react-hooks": "^5.1.0",
101
+ "eslint-plugin-react-refresh": "^0.4.18",
102
+ "eslint-plugin-storybook": "^0.11.2",
103
+ "glob": "^11.0.1",
104
+ "globals": "^15.14.0",
105
+ "husky": "^9.1.7",
106
+ "hygen": "^6.2.11",
107
+ "jest": "^29.7.0",
108
+ "jest-environment-jsdom": "^29.7.0",
109
+ "lint-staged": "^15.4.3",
110
+ "npm-check-updates": "^17.1.14",
111
+ "prettier": "^3.4.2",
112
+ "react": "^18.3.1",
113
+ "react-dom": "^18.3.1",
114
+ "semantic-release": "^24.2.1",
115
+ "storybook": "^8.5.2",
116
+ "tslib": "^2.8.1",
117
+ "typescript": "~5.7.3",
118
+ "typescript-eslint": "^8.21.0",
119
+ "vite": "^6.0.11",
120
+ "vite-plugin-dts": "^4.5.0"
121
+ },
122
+ "lint-staged": {
123
+ "src/**/*.(ts|tsx)": [
124
+ "prettier --write",
125
+ "eslint"
126
+ ]
127
+ },
128
+ "eslintConfig": {
129
+ "extends": [
130
+ "plugin:storybook/recommended"
131
+ ]
132
+ }
133
+ }