bmi-next-brokers 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/dist/main.d.ts +0 -0
- package/dist/main.js +1 -0
- package/package.json +56 -0
package/README.md
ADDED
package/dist/main.d.ts
ADDED
|
File without changes
|
package/dist/main.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
package/package.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "bmi-next-brokers",
|
|
3
|
+
"description": "Componentes de UI para proyecto BMI Next Brokers",
|
|
4
|
+
"version": "1.0.1",
|
|
5
|
+
"author": "BMI Ahorro España",
|
|
6
|
+
"contributors": [
|
|
7
|
+
"José Ramón Jiménez <jrjimenez@bmicos.com>",
|
|
8
|
+
"David Fernández Bolaños <dafernandez@bmicos.com>",
|
|
9
|
+
"Jorge Martín <jmartin@bmicos.com>",
|
|
10
|
+
"Alonso Mangas <amangas@bmicos.com>"
|
|
11
|
+
],
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"type": "module",
|
|
14
|
+
"main": "dist/main.js",
|
|
15
|
+
"types": "dist/main.d.ts",
|
|
16
|
+
"files": [
|
|
17
|
+
"dist"
|
|
18
|
+
],
|
|
19
|
+
"sideEffects": [
|
|
20
|
+
"**/*.css"
|
|
21
|
+
],
|
|
22
|
+
"scripts": {
|
|
23
|
+
"dev": "vite",
|
|
24
|
+
"build": "tsc -b ./tsconfig.lib.json && vite build",
|
|
25
|
+
"lint": "eslint .",
|
|
26
|
+
"preview": "vite preview",
|
|
27
|
+
"prepublishOnly": "npm run build"
|
|
28
|
+
},
|
|
29
|
+
"peerDependencies": {
|
|
30
|
+
"react": "^18.3.1",
|
|
31
|
+
"react-dom": "^18.3.1"
|
|
32
|
+
},
|
|
33
|
+
"devDependencies": {
|
|
34
|
+
"@eslint/js": "^9.13.0",
|
|
35
|
+
"@types/node": "^22.9.1",
|
|
36
|
+
"@types/react": "^18.3.12",
|
|
37
|
+
"@types/react-dom": "^18.3.1",
|
|
38
|
+
"@vitejs/plugin-react": "^4.3.3",
|
|
39
|
+
"eslint": "^9.13.0",
|
|
40
|
+
"eslint-plugin-react-hooks": "^5.0.0",
|
|
41
|
+
"eslint-plugin-react-refresh": "^0.4.14",
|
|
42
|
+
"glob": "^11.0.0",
|
|
43
|
+
"globals": "^15.11.0",
|
|
44
|
+
"prettier": "^3.3.3",
|
|
45
|
+
"react": "^18.3.1",
|
|
46
|
+
"react-dom": "^18.3.1",
|
|
47
|
+
"typescript": "~5.6.2",
|
|
48
|
+
"typescript-eslint": "^8.11.0",
|
|
49
|
+
"vite": "^5.4.10",
|
|
50
|
+
"vite-plugin-dts": "^4.3.0",
|
|
51
|
+
"vite-plugin-lib-inject-css": "^2.1.1"
|
|
52
|
+
},
|
|
53
|
+
"dependencies": {
|
|
54
|
+
"react-loading-skeleton": "^3.5.0"
|
|
55
|
+
}
|
|
56
|
+
}
|