@rafikidota/iroh 0.41.1 → 0.41.2
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/package.json +33 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rafikidota/iroh",
|
|
3
|
-
"version": "0.41.
|
|
3
|
+
"version": "0.41.2",
|
|
4
4
|
"description": "Sometimes, the best way to solve your own problems is to help someone else.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -27,11 +27,12 @@
|
|
|
27
27
|
"prepublishOnly": "npm run lint && npm run build"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@angular-devkit/core": "19.2.13",
|
|
31
|
-
"@angular-devkit/schematics": "19.2.13",
|
|
32
30
|
"chalk": "4.1.2"
|
|
33
31
|
},
|
|
34
32
|
"devDependencies": {
|
|
33
|
+
"@angular-devkit/core": "19.2.13",
|
|
34
|
+
"@angular-devkit/schematics": "19.2.13",
|
|
35
|
+
"@angular-devkit/schematics-cli": "19.2.13",
|
|
35
36
|
"@eslint/eslintrc": "3.3.1",
|
|
36
37
|
"@eslint/js": "9.31.0",
|
|
37
38
|
"@nestjs/common": "11.1.4",
|
|
@@ -69,6 +70,9 @@
|
|
|
69
70
|
"uuid": "11.1.0"
|
|
70
71
|
},
|
|
71
72
|
"peerDependencies": {
|
|
73
|
+
"@angular-devkit/core": "^19.2.0",
|
|
74
|
+
"@angular-devkit/schematics": "^19.2.0",
|
|
75
|
+
"@angular-devkit/schematics-cli": "^19.2.0",
|
|
72
76
|
"@nestjs/common": "^11.0.0",
|
|
73
77
|
"@nestjs/config": "^4.0.0",
|
|
74
78
|
"@nestjs/core": "^11.0.0",
|
|
@@ -81,8 +85,8 @@
|
|
|
81
85
|
"@swc/cli": "^0.7.0",
|
|
82
86
|
"@swc/core": "^1.12.0",
|
|
83
87
|
"@swc/helpers": "^0.5.0",
|
|
84
|
-
"class-transformer": "
|
|
85
|
-
"class-validator": "
|
|
88
|
+
"class-transformer": "^0.4.1",
|
|
89
|
+
"class-validator": "^0.13.2",
|
|
86
90
|
"joi": "^17.13.0",
|
|
87
91
|
"reflect-metadata": "^0.2.0",
|
|
88
92
|
"rxjs": "^7.8.0",
|
|
@@ -90,6 +94,15 @@
|
|
|
90
94
|
"uuid": "^11.0.0"
|
|
91
95
|
},
|
|
92
96
|
"peerDependenciesMeta": {
|
|
97
|
+
"@angular-devkit/core": {
|
|
98
|
+
"optional": true
|
|
99
|
+
},
|
|
100
|
+
"@angular-devkit/schematics": {
|
|
101
|
+
"optional": true
|
|
102
|
+
},
|
|
103
|
+
"@angular-devkit/schematics-cli": {
|
|
104
|
+
"optional": true
|
|
105
|
+
},
|
|
93
106
|
"@nestjs/microservices": {
|
|
94
107
|
"optional": true
|
|
95
108
|
},
|
|
@@ -99,9 +112,15 @@
|
|
|
99
112
|
"@nestjs/swagger": {
|
|
100
113
|
"optional": true
|
|
101
114
|
},
|
|
115
|
+
"@nestjs/typeorm": {
|
|
116
|
+
"optional": true
|
|
117
|
+
},
|
|
102
118
|
"@nestjs/websockets": {
|
|
103
119
|
"optional": true
|
|
104
120
|
},
|
|
121
|
+
"@rafikidota/serpens": {
|
|
122
|
+
"optional": true
|
|
123
|
+
},
|
|
105
124
|
"@swc/cli": {
|
|
106
125
|
"optional": true
|
|
107
126
|
},
|
|
@@ -110,8 +129,17 @@
|
|
|
110
129
|
},
|
|
111
130
|
"@swc/helpers": {
|
|
112
131
|
"optional": true
|
|
132
|
+
},
|
|
133
|
+
"typeorm": {
|
|
134
|
+
"optional": true
|
|
113
135
|
}
|
|
114
136
|
},
|
|
137
|
+
"lint-staged": {
|
|
138
|
+
"**/*.{ts,json}": [
|
|
139
|
+
"prettier --write",
|
|
140
|
+
"eslint"
|
|
141
|
+
]
|
|
142
|
+
},
|
|
115
143
|
"schematics": "./collection.json",
|
|
116
144
|
"keywords": [
|
|
117
145
|
"backend",
|