@nestia/core 2.0.5-dev.20230921 → 2.0.5-dev.20230921-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 +88 -88
package/package.json
CHANGED
|
@@ -1,89 +1,89 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@nestia/core",
|
|
3
|
-
"version": "2.0.5-dev.20230921",
|
|
4
|
-
"description": "Super-fast validation decorators of NestJS",
|
|
5
|
-
"main": "lib/index.js",
|
|
6
|
-
"typings": "lib/index.d.ts",
|
|
7
|
-
"scripts": {
|
|
8
|
-
"build": "rimraf lib && tsc",
|
|
9
|
-
"dev": "npm run build -- --watch",
|
|
10
|
-
"eslint": "eslint ./**/*.ts",
|
|
11
|
-
"eslint:fix": "eslint ./**/*.ts --fix",
|
|
12
|
-
"package:latest": "npm run build && npm publish --access public",
|
|
13
|
-
"package:next": "npm run package:latest -- --tag next",
|
|
14
|
-
"prettier": "prettier ./**/*.ts --write",
|
|
15
|
-
"prepare": "ts-patch install"
|
|
16
|
-
},
|
|
17
|
-
"repository": {
|
|
18
|
-
"type": "git",
|
|
19
|
-
"url": "https://github.com/samchon/nestia"
|
|
20
|
-
},
|
|
21
|
-
"keywords": [
|
|
22
|
-
"nestjs",
|
|
23
|
-
"nestia",
|
|
24
|
-
"typia",
|
|
25
|
-
"validator",
|
|
26
|
-
"decorator",
|
|
27
|
-
"class-validator",
|
|
28
|
-
"class-transformer"
|
|
29
|
-
],
|
|
30
|
-
"author": "Jeongho Nam",
|
|
31
|
-
"license": "MIT",
|
|
32
|
-
"bugs": {
|
|
33
|
-
"url": "https://github.com/samchon/nestia/issues"
|
|
34
|
-
},
|
|
35
|
-
"homepage": "https://nestia.io",
|
|
36
|
-
"dependencies": {
|
|
37
|
-
"@nestia/fetcher": "^2.0.5-dev.20230921",
|
|
38
|
-
"@nestjs/common": ">= 7.0.1",
|
|
39
|
-
"@nestjs/core": ">= 7.0.1",
|
|
40
|
-
"@nestjs/platform-express": ">= 7.0.1",
|
|
41
|
-
"@nestjs/platform-fastify": ">= 7.0.1",
|
|
42
|
-
"detect-ts-node": "^1.0.5",
|
|
43
|
-
"glob": "^7.2.0",
|
|
44
|
-
"raw-body": ">= 2.0.0",
|
|
45
|
-
"reflect-metadata": ">= 0.1.12",
|
|
46
|
-
"rxjs": ">= 6.0.0",
|
|
47
|
-
"typia": "^5.0.5"
|
|
48
|
-
},
|
|
49
|
-
"peerDependencies": {
|
|
50
|
-
"@nestia/fetcher": ">=2.0.5-dev.20230921",
|
|
51
|
-
"@nestjs/common": ">=7.0.1",
|
|
52
|
-
"@nestjs/core": ">=7.0.1",
|
|
53
|
-
"@nestjs/platform-express": ">=7.0.1",
|
|
54
|
-
"@nestjs/platform-fastify": ">=7.0.1",
|
|
55
|
-
"raw-body": ">=2.0.0",
|
|
56
|
-
"reflect-metadata": ">=0.1.12",
|
|
57
|
-
"rxjs": ">=6.0.0",
|
|
58
|
-
"typescript": ">=4.8.0",
|
|
59
|
-
"typia": ">=5.0.5 <6.0.0"
|
|
60
|
-
},
|
|
61
|
-
"devDependencies": {
|
|
62
|
-
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
|
|
63
|
-
"@types/express": "^4.17.15",
|
|
64
|
-
"@types/glob": "^7.2.0",
|
|
65
|
-
"@types/inquirer": "^9.0.3",
|
|
66
|
-
"@types/ts-expose-internals": "npm:ts-expose-internals@5.1.6",
|
|
67
|
-
"@typescript-eslint/eslint-plugin": "^5.46.1",
|
|
68
|
-
"@typescript-eslint/parser": "^5.46.1",
|
|
69
|
-
"commander": "^10.0.0",
|
|
70
|
-
"comment-json": "^4.2.3",
|
|
71
|
-
"eslint-plugin-deprecation": "^1.4.1",
|
|
72
|
-
"git-last-commit": "^1.0.1",
|
|
73
|
-
"inquirer": "^8.2.5",
|
|
74
|
-
"prettier": "^2.8.7",
|
|
75
|
-
"rimraf": "^3.0.2",
|
|
76
|
-
"ts-node": "^10.9.1",
|
|
77
|
-
"ts-patch": "^3.0.2",
|
|
78
|
-
"tstl": "^2.5.13",
|
|
79
|
-
"typescript": "^5.2.2",
|
|
80
|
-
"typescript-transform-paths": "^3.4.6"
|
|
81
|
-
},
|
|
82
|
-
"files": [
|
|
83
|
-
"README.md",
|
|
84
|
-
"LICENSE",
|
|
85
|
-
"package.json",
|
|
86
|
-
"lib",
|
|
87
|
-
"src"
|
|
88
|
-
]
|
|
1
|
+
{
|
|
2
|
+
"name": "@nestia/core",
|
|
3
|
+
"version": "2.0.5-dev.20230921-2",
|
|
4
|
+
"description": "Super-fast validation decorators of NestJS",
|
|
5
|
+
"main": "lib/index.js",
|
|
6
|
+
"typings": "lib/index.d.ts",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"build": "rimraf lib && tsc",
|
|
9
|
+
"dev": "npm run build -- --watch",
|
|
10
|
+
"eslint": "eslint ./**/*.ts",
|
|
11
|
+
"eslint:fix": "eslint ./**/*.ts --fix",
|
|
12
|
+
"package:latest": "npm run build && npm publish --access public",
|
|
13
|
+
"package:next": "npm run package:latest -- --tag next",
|
|
14
|
+
"prettier": "prettier ./**/*.ts --write",
|
|
15
|
+
"prepare": "ts-patch install"
|
|
16
|
+
},
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "https://github.com/samchon/nestia"
|
|
20
|
+
},
|
|
21
|
+
"keywords": [
|
|
22
|
+
"nestjs",
|
|
23
|
+
"nestia",
|
|
24
|
+
"typia",
|
|
25
|
+
"validator",
|
|
26
|
+
"decorator",
|
|
27
|
+
"class-validator",
|
|
28
|
+
"class-transformer"
|
|
29
|
+
],
|
|
30
|
+
"author": "Jeongho Nam",
|
|
31
|
+
"license": "MIT",
|
|
32
|
+
"bugs": {
|
|
33
|
+
"url": "https://github.com/samchon/nestia/issues"
|
|
34
|
+
},
|
|
35
|
+
"homepage": "https://nestia.io",
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"@nestia/fetcher": "^2.0.5-dev.20230921-2",
|
|
38
|
+
"@nestjs/common": ">= 7.0.1",
|
|
39
|
+
"@nestjs/core": ">= 7.0.1",
|
|
40
|
+
"@nestjs/platform-express": ">= 7.0.1",
|
|
41
|
+
"@nestjs/platform-fastify": ">= 7.0.1",
|
|
42
|
+
"detect-ts-node": "^1.0.5",
|
|
43
|
+
"glob": "^7.2.0",
|
|
44
|
+
"raw-body": ">= 2.0.0",
|
|
45
|
+
"reflect-metadata": ">= 0.1.12",
|
|
46
|
+
"rxjs": ">= 6.0.0",
|
|
47
|
+
"typia": "^5.0.5"
|
|
48
|
+
},
|
|
49
|
+
"peerDependencies": {
|
|
50
|
+
"@nestia/fetcher": ">=2.0.5-dev.20230921-2",
|
|
51
|
+
"@nestjs/common": ">=7.0.1",
|
|
52
|
+
"@nestjs/core": ">=7.0.1",
|
|
53
|
+
"@nestjs/platform-express": ">=7.0.1",
|
|
54
|
+
"@nestjs/platform-fastify": ">=7.0.1",
|
|
55
|
+
"raw-body": ">=2.0.0",
|
|
56
|
+
"reflect-metadata": ">=0.1.12",
|
|
57
|
+
"rxjs": ">=6.0.0",
|
|
58
|
+
"typescript": ">=4.8.0",
|
|
59
|
+
"typia": ">=5.0.5 <6.0.0"
|
|
60
|
+
},
|
|
61
|
+
"devDependencies": {
|
|
62
|
+
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
|
|
63
|
+
"@types/express": "^4.17.15",
|
|
64
|
+
"@types/glob": "^7.2.0",
|
|
65
|
+
"@types/inquirer": "^9.0.3",
|
|
66
|
+
"@types/ts-expose-internals": "npm:ts-expose-internals@5.1.6",
|
|
67
|
+
"@typescript-eslint/eslint-plugin": "^5.46.1",
|
|
68
|
+
"@typescript-eslint/parser": "^5.46.1",
|
|
69
|
+
"commander": "^10.0.0",
|
|
70
|
+
"comment-json": "^4.2.3",
|
|
71
|
+
"eslint-plugin-deprecation": "^1.4.1",
|
|
72
|
+
"git-last-commit": "^1.0.1",
|
|
73
|
+
"inquirer": "^8.2.5",
|
|
74
|
+
"prettier": "^2.8.7",
|
|
75
|
+
"rimraf": "^3.0.2",
|
|
76
|
+
"ts-node": "^10.9.1",
|
|
77
|
+
"ts-patch": "^3.0.2",
|
|
78
|
+
"tstl": "^2.5.13",
|
|
79
|
+
"typescript": "^5.2.2",
|
|
80
|
+
"typescript-transform-paths": "^3.4.6"
|
|
81
|
+
},
|
|
82
|
+
"files": [
|
|
83
|
+
"README.md",
|
|
84
|
+
"LICENSE",
|
|
85
|
+
"package.json",
|
|
86
|
+
"lib",
|
|
87
|
+
"src"
|
|
88
|
+
]
|
|
89
89
|
}
|