@dudousxd/nestjs-codegen 0.2.0

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 ADDED
@@ -0,0 +1,81 @@
1
+ {
2
+ "name": "@dudousxd/nestjs-codegen",
3
+ "version": "0.2.0",
4
+ "repository": {
5
+ "type": "git",
6
+ "url": "git+https://github.com/DavideCarvalho/nestjs-codegen.git",
7
+ "directory": "packages/core"
8
+ },
9
+ "description": "Extensible codegen core for NestJS: class-validator/contract discovery → neutral schema IR → pluggable validation adapters.",
10
+ "license": "MIT",
11
+ "author": "Davi Carvalho <davi@goflip.ai>",
12
+ "type": "module",
13
+ "main": "./dist/index.cjs",
14
+ "module": "./dist/index.js",
15
+ "types": "./dist/index.d.ts",
16
+ "bin": {
17
+ "nestjs-codegen": "./bin/nestjs-codegen.js"
18
+ },
19
+ "exports": {
20
+ ".": {
21
+ "types": "./dist/index.d.ts",
22
+ "import": "./dist/index.js",
23
+ "require": "./dist/index.cjs"
24
+ },
25
+ "./nest": {
26
+ "types": "./dist/nest/index.d.ts",
27
+ "import": "./dist/nest/index.js",
28
+ "require": "./dist/nest/index.cjs"
29
+ },
30
+ "./extension": {
31
+ "types": "./dist/extension/index.d.ts",
32
+ "import": "./dist/extension/index.js",
33
+ "require": "./dist/extension/index.cjs"
34
+ }
35
+ },
36
+ "files": [
37
+ "dist",
38
+ "bin",
39
+ "README.md",
40
+ "CHANGELOG.md"
41
+ ],
42
+ "dependencies": {
43
+ "cac": "6.7.14",
44
+ "chokidar": "3.6.0",
45
+ "fast-glob": "3.3.3",
46
+ "ts-morph": "28.0.0"
47
+ },
48
+ "peerDependencies": {
49
+ "@nestjs/common": ">=9.0.0",
50
+ "tsx": ">=4.0.0",
51
+ "typescript": ">=5.0.0"
52
+ },
53
+ "peerDependenciesMeta": {
54
+ "@nestjs/common": {
55
+ "optional": true
56
+ },
57
+ "tsx": {
58
+ "optional": true
59
+ }
60
+ },
61
+ "devDependencies": {
62
+ "@nestjs/common": "11.1.26",
63
+ "@nestjs/core": "11.1.26",
64
+ "@tanstack/react-query": "5.101.0",
65
+ "@types/node": "20.19.42",
66
+ "class-validator": "0.14.4",
67
+ "tsx": "4.22.4",
68
+ "typescript": "5.9.3",
69
+ "vitest": "4.1.8",
70
+ "zod": "3.25.76"
71
+ },
72
+ "engines": {
73
+ "node": ">=20"
74
+ },
75
+ "scripts": {
76
+ "build": "tsup",
77
+ "test": "vitest run",
78
+ "test:watch": "vitest",
79
+ "typecheck": "tsc --noEmit -p tsconfig.json"
80
+ }
81
+ }