dev4fun-utils 0.0.1 → 0.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/README.md +0 -98
- package/dist/common/base/base.exception.d.ts +16 -0
- package/dist/common/base/base.exception.js +24 -0
- package/dist/common/base/base.exception.js.map +1 -0
- package/dist/common/common.module.d.ts +2 -0
- package/dist/common/common.module.js +21 -0
- package/dist/common/common.module.js.map +1 -0
- package/dist/common/decorators/common.decorator.d.ts +7 -0
- package/dist/common/decorators/common.decorator.js +94 -0
- package/dist/common/decorators/common.decorator.js.map +1 -0
- package/dist/common/dto/id.dto.d.ts +3 -0
- package/dist/common/dto/id.dto.js +31 -0
- package/dist/common/dto/id.dto.js.map +1 -0
- package/dist/common/dto/page.dto.d.ts +6 -0
- package/dist/common/dto/page.dto.js +69 -0
- package/dist/common/dto/page.dto.js.map +1 -0
- package/dist/common/dto/time.dto.d.ts +4 -0
- package/dist/common/dto/time.dto.js +43 -0
- package/dist/common/dto/time.dto.js.map +1 -0
- package/dist/common/struct/batch.struct.d.ts +7 -0
- package/dist/common/struct/batch.struct.js +37 -0
- package/dist/common/struct/batch.struct.js.map +1 -0
- package/dist/common/struct/list/batch.struct.d.ts +7 -0
- package/dist/common/struct/list/batch.struct.js +41 -0
- package/dist/common/struct/list/batch.struct.js.map +1 -0
- package/dist/common/struct/list/queue.struct.d.ts +10 -0
- package/dist/common/struct/list/queue.struct.js +39 -0
- package/dist/common/struct/list/queue.struct.js.map +1 -0
- package/dist/common/struct/list/stack.struct.d.ts +9 -0
- package/dist/common/struct/list/stack.struct.js +36 -0
- package/dist/common/struct/list/stack.struct.js.map +1 -0
- package/dist/common/struct/list/tree.struct.d.ts +15 -0
- package/dist/common/struct/list/tree.struct.js +39 -0
- package/dist/common/struct/list/tree.struct.js.map +1 -0
- package/dist/common/struct/page.struct.d.ts +17 -0
- package/dist/common/struct/page.struct.js +96 -0
- package/dist/common/struct/page.struct.js.map +1 -0
- package/dist/common/struct/queue.struct.d.ts +10 -0
- package/dist/common/struct/queue.struct.js +33 -0
- package/dist/common/struct/queue.struct.js.map +1 -0
- package/dist/common/struct/stack.struct.d.ts +9 -0
- package/dist/common/struct/stack.struct.js +32 -0
- package/dist/common/struct/stack.struct.js.map +1 -0
- package/dist/common/utils/method.util.d.ts +6 -0
- package/dist/common/utils/method.util.js +38 -0
- package/dist/common/utils/method.util.js.map +1 -0
- package/dist/common/utils/number.util.d.ts +5 -0
- package/dist/common/utils/number.util.js +16 -0
- package/dist/common/utils/number.util.js.map +1 -0
- package/dist/common/utils/string.util.d.ts +5 -0
- package/dist/common/utils/string.util.js +17 -0
- package/dist/common/utils/string.util.js.map +1 -0
- 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 +7 -15
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dev4fun-utils",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"description": "Utility package for NestJS with TypeORM base entities and common decorators",
|
|
5
|
-
"author": "",
|
|
5
|
+
"author": "Nguyen Chau Tuan",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
8
|
"types": "dist/index.d.ts",
|
|
@@ -19,30 +19,22 @@
|
|
|
19
19
|
],
|
|
20
20
|
"repository": {
|
|
21
21
|
"type": "git",
|
|
22
|
-
"url": ""
|
|
22
|
+
"url": "https://github.com/nctuanit/dev4fun-utils"
|
|
23
23
|
},
|
|
24
24
|
"scripts": {
|
|
25
25
|
"build": "nest build",
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"start": "nest start",
|
|
29
|
-
"start:dev": "nest start --watch",
|
|
30
|
-
"start:debug": "nest start --debug --watch",
|
|
31
|
-
"start:prod": "node dist/main",
|
|
32
|
-
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
|
|
33
|
-
"test": "jest",
|
|
34
|
-
"test:watch": "jest --watch",
|
|
35
|
-
"test:cov": "jest --coverage",
|
|
36
|
-
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
|
|
37
|
-
"test:e2e": "jest --config ./test/jest-e2e.json"
|
|
26
|
+
"publish": "npm run build && npm version patch && bun publish",
|
|
27
|
+
"version": "node updateversion.js"
|
|
38
28
|
},
|
|
39
29
|
"dependencies": {
|
|
40
30
|
"@nestjs/common": "^11.0.1",
|
|
41
31
|
"@nestjs/core": "^11.0.1",
|
|
42
32
|
"@nestjs/platform-express": "^11.0.1",
|
|
43
33
|
"@nestjs/swagger": "^11.2.3",
|
|
34
|
+
"argon2": "^0.44.0",
|
|
44
35
|
"class-transformer": "^0.5.1",
|
|
45
36
|
"class-validator": "^0.14.3",
|
|
37
|
+
"hashids": "^2.3.0",
|
|
46
38
|
"pg": "^8.16.3",
|
|
47
39
|
"reflect-metadata": "^0.2.2",
|
|
48
40
|
"rxjs": "^7.8.1",
|