@nest-boot/crypt 7.0.0 → 7.0.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/LICENSE +21 -0
- package/dist/crypt-module-options.interface.d.ts +8 -1
- package/dist/crypt.module-definition.d.ts +1 -7
- package/dist/crypt.module-definition.js +1 -8
- package/dist/crypt.module-definition.js.map +1 -1
- package/dist/crypt.module.d.ts +32 -1
- package/dist/crypt.module.js +35 -0
- package/dist/crypt.module.js.map +1 -1
- package/dist/crypt.service.d.ts +39 -2
- package/dist/crypt.service.js +56 -5
- package/dist/crypt.service.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +26 -28
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nest-boot/crypt",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "d4rkcr0w <me@d4rkcr0w.com>",
|
|
6
6
|
"homepage": "",
|
|
@@ -14,36 +14,26 @@
|
|
|
14
14
|
"dist",
|
|
15
15
|
"templates"
|
|
16
16
|
],
|
|
17
|
-
"scripts": {
|
|
18
|
-
"build": "tsc -p tsconfig.build.json",
|
|
19
|
-
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
|
|
20
|
-
"dev": "tsc -w -p tsconfig.build.json",
|
|
21
|
-
"lint": "eslint \"{src,test}/**/*.ts\" --fix",
|
|
22
|
-
"test": "jest",
|
|
23
|
-
"test:cov": "jest --coverage"
|
|
24
|
-
},
|
|
25
17
|
"devDependencies": {
|
|
26
|
-
"@
|
|
27
|
-
"@
|
|
28
|
-
"@
|
|
29
|
-
"@
|
|
30
|
-
"@
|
|
31
|
-
"
|
|
32
|
-
"@nestjs/testing": "^10.3.3",
|
|
33
|
-
"@types/jest": "^29.5.12",
|
|
34
|
-
"@types/node": "^20.11.19",
|
|
35
|
-
"eslint": "^8.49.0",
|
|
18
|
+
"@nestjs/common": "^11.1.9",
|
|
19
|
+
"@nestjs/core": "^11.1.9",
|
|
20
|
+
"@nestjs/testing": "^11.1.9",
|
|
21
|
+
"@types/jest": "^29.5.14",
|
|
22
|
+
"@types/node": "^22.18.6",
|
|
23
|
+
"eslint": "^9.36.0",
|
|
36
24
|
"jest": "^29.7.0",
|
|
37
|
-
"reflect-metadata": "^0.
|
|
38
|
-
"rxjs": "^7.8.
|
|
39
|
-
"ts-jest": "^29.
|
|
40
|
-
"typescript": "^5.
|
|
25
|
+
"reflect-metadata": "^0.2.2",
|
|
26
|
+
"rxjs": "^7.8.2",
|
|
27
|
+
"ts-jest": "^29.4.4",
|
|
28
|
+
"typescript": "^5.9.3",
|
|
29
|
+
"@nest-boot/eslint-config": "^7.0.2",
|
|
30
|
+
"@nest-boot/eslint-plugin": "^7.0.3",
|
|
31
|
+
"@nest-boot/tsconfig": "^7.0.1"
|
|
41
32
|
},
|
|
42
33
|
"peerDependencies": {
|
|
43
|
-
"@
|
|
44
|
-
"@nestjs/
|
|
45
|
-
"
|
|
46
|
-
"reflect-metadata": "^0.1.13",
|
|
34
|
+
"@nestjs/common": "^11.0.0",
|
|
35
|
+
"@nestjs/core": "^11.0.0",
|
|
36
|
+
"reflect-metadata": "^0.2.2",
|
|
47
37
|
"rxjs": "^7.0.0"
|
|
48
38
|
},
|
|
49
39
|
"publishConfig": {
|
|
@@ -57,5 +47,13 @@
|
|
|
57
47
|
},
|
|
58
48
|
"volta": {
|
|
59
49
|
"extends": "../../package.json"
|
|
50
|
+
},
|
|
51
|
+
"scripts": {
|
|
52
|
+
"build": "tsc -p tsconfig.build.json",
|
|
53
|
+
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
|
|
54
|
+
"dev": "tsc -w -p tsconfig.build.json",
|
|
55
|
+
"lint": "eslint \"{src,test}/**/*.ts\" --fix",
|
|
56
|
+
"test": "jest",
|
|
57
|
+
"test:cov": "jest --coverage"
|
|
60
58
|
}
|
|
61
|
-
}
|
|
59
|
+
}
|