@infineit-nestjs/core 1.0.2 → 1.0.3
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 +55 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@infineit-nestjs/core",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"main": "./dist/cjs/index.js",
|
|
5
5
|
"module": "./dist/es/index.mjs",
|
|
6
6
|
"exports": {
|
|
@@ -10,20 +10,66 @@
|
|
|
10
10
|
"require": "./dist/cjs/index.js",
|
|
11
11
|
"default": "./dist/cjs/index.js"
|
|
12
12
|
},
|
|
13
|
-
"./decorators": {
|
|
14
|
-
"types": "./dist/types/decorators/index.d.ts",
|
|
15
|
-
"import": "./dist/es/decorators/index.mjs",
|
|
16
|
-
"require": "./dist/cjsdecorators/index.js",
|
|
17
|
-
"default": "./dist/cjs/decorators/index.js"
|
|
18
|
-
},
|
|
19
13
|
"./constants": {
|
|
20
14
|
"types": "./dist/types/constants/index.d.ts",
|
|
21
15
|
"import": "./dist/es/constants/index.mjs",
|
|
22
16
|
"require": "./dist/cjs/constants/index.js",
|
|
23
17
|
"default": "./dist/cjs/constants/index.js"
|
|
18
|
+
},
|
|
19
|
+
"./decorators": {
|
|
20
|
+
"types": "./dist/types/decorators/index.d.ts",
|
|
21
|
+
"import": "./dist/es/decorators/index.mjs",
|
|
22
|
+
"require": "./dist/cjs/decorators/index.js",
|
|
23
|
+
"default": "./dist/cjs/decorators/index.js"
|
|
24
|
+
},
|
|
25
|
+
"./errors": {
|
|
26
|
+
"types": "./dist/types/errors/index.d.ts",
|
|
27
|
+
"import": "./dist/es/errors/index.mjs",
|
|
28
|
+
"require": "./dist/cjs/errors/index.js",
|
|
29
|
+
"default": "./dist/cjs/errors/index.js"
|
|
30
|
+
},
|
|
31
|
+
"./exceptions": {
|
|
32
|
+
"types": "./dist/types/exceptions/index.d.ts",
|
|
33
|
+
"import": "./dist/es/exceptions/index.mjs",
|
|
34
|
+
"require": "./dist/cjs/exceptions/index.js",
|
|
35
|
+
"default": "./dist/cjs/exceptions/index.js"
|
|
36
|
+
},
|
|
37
|
+
"./filters": {
|
|
38
|
+
"types": "./dist/types/filters/index.d.ts",
|
|
39
|
+
"import": "./dist/es/filters/index.mjs",
|
|
40
|
+
"require": "./dist/cjs/filters/index.js",
|
|
41
|
+
"default": "./dist/cjs/filters/index.js"
|
|
42
|
+
},
|
|
43
|
+
"./validators": {
|
|
44
|
+
"types": "./dist/types/validators/index.d.ts",
|
|
45
|
+
"import": "./dist/es/validators/index.mjs",
|
|
46
|
+
"require": "./dist/cjs/validators/index.js",
|
|
47
|
+
"default": "./dist/cjs/validators/index.js"
|
|
24
48
|
}
|
|
25
49
|
},
|
|
26
50
|
"types": "./dist/types/index.d.ts",
|
|
51
|
+
"typesVersions": {
|
|
52
|
+
"*": {
|
|
53
|
+
"constants": [
|
|
54
|
+
"dist/types/constants/index.d.ts"
|
|
55
|
+
],
|
|
56
|
+
"decorators": [
|
|
57
|
+
"dist/types/decorators/index.d.ts"
|
|
58
|
+
],
|
|
59
|
+
"errors": [
|
|
60
|
+
"dist/types/errors/index.d.ts"
|
|
61
|
+
],
|
|
62
|
+
"exceptions": [
|
|
63
|
+
"dist/types/exceptions/index.d.ts"
|
|
64
|
+
],
|
|
65
|
+
"filters": [
|
|
66
|
+
"dist/types/filters/index.d.ts"
|
|
67
|
+
],
|
|
68
|
+
"validators": [
|
|
69
|
+
"dist/types/validators/index.d.ts"
|
|
70
|
+
]
|
|
71
|
+
}
|
|
72
|
+
},
|
|
27
73
|
"files": [
|
|
28
74
|
"dist/",
|
|
29
75
|
"README.md",
|
|
@@ -38,7 +84,7 @@
|
|
|
38
84
|
"dev": "concurrently -c blue,red -n tsc,rollup --kill-others \"tsc --watch -p . --preserveWatchOutput\" \"rollup --config --watch --no-watch.clearScreen\""
|
|
39
85
|
},
|
|
40
86
|
"dependencies": {
|
|
41
|
-
"@infineit-nestjs/services": "1.0.
|
|
87
|
+
"@infineit-nestjs/services": "1.0.12",
|
|
42
88
|
"@nestjs/swagger": "^11.0.7"
|
|
43
89
|
},
|
|
44
90
|
"devDependencies": {
|
|
@@ -67,5 +113,5 @@
|
|
|
67
113
|
"publishConfig": {
|
|
68
114
|
"access": "public"
|
|
69
115
|
},
|
|
70
|
-
"gitHead": "
|
|
116
|
+
"gitHead": "41949a3f4627ec7685e34e87a31d7d6292c58036"
|
|
71
117
|
}
|