aves-sdk 1.2.2 → 1.2.4

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.
@@ -0,0 +1,22 @@
1
+ var exclude = [
2
+ "node_modules",
3
+ "test",
4
+ "dist",
5
+ "**/*spec.ts",
6
+ "scripts",
7
+ "cli",
8
+ "*.config.*",
9
+ "loadtests"
10
+ ];
11
+ var compilerOptions = {
12
+ incremental: true,
13
+ declaration: true,
14
+ emitDeclarationOnly: true
15
+ };
16
+ var tsconfig_build = {
17
+ "extends": "./tsconfig.json",
18
+ exclude: exclude,
19
+ compilerOptions: compilerOptions
20
+ };
21
+
22
+ export { compilerOptions, tsconfig_build as default, exclude };
@@ -0,0 +1,22 @@
1
+ var exclude = [
2
+ "node_modules",
3
+ "test",
4
+ "dist",
5
+ "**/*spec.ts",
6
+ "scripts",
7
+ "cli",
8
+ "*.config.*",
9
+ "loadtests"
10
+ ];
11
+ var compilerOptions = {
12
+ incremental: true,
13
+ declaration: true,
14
+ emitDeclarationOnly: true
15
+ };
16
+ var tsconfig_build = {
17
+ "extends": "./tsconfig.json",
18
+ exclude: exclude,
19
+ compilerOptions: compilerOptions
20
+ };
21
+
22
+ export { compilerOptions, tsconfig_build as default, exclude };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "aves-sdk",
3
- "version": "1.2.2",
4
- "description": "TypeScript SDK for AVES XML REST, compatible with NestJS",
3
+ "version": "1.2.4",
4
+ "description": "TypeScript SDK for AVES XML REST",
5
5
  "homepage": "https://github.com/simoneguglielmi/aves-sdk#readme",
6
6
  "repository": [
7
7
  {
@@ -21,7 +21,6 @@
21
21
  "sdk",
22
22
  "xml",
23
23
  "rest",
24
- "nestjs",
25
24
  "typescript"
26
25
  ],
27
26
  "license": "MIT",
@@ -52,48 +51,21 @@
52
51
  "publish": "npm publish"
53
52
  },
54
53
  "packageManager": "yarn@1.22.22",
55
- "peerDependencies": {
56
- "@nestjs/common": "^10.0.0",
57
- "@nestjs/config": "^4.0.2",
58
- "@nestjs/core": "^10.0.0",
59
- "reflect-metadata": "^0.2.2",
60
- "rxjs": "^7.8.2",
61
- "zod": "^4.1.11"
62
- },
63
54
  "dependencies": {
64
- "@nestjs/common": "^11.1.6",
65
- "axios": "^1.12.2",
66
- "fast-xml-parser": "^5.3.0"
55
+ "fast-xml-parser": "^5.3.0",
56
+ "undici": "^7.18.2",
57
+ "valibot": "^1.2.0"
67
58
  },
68
59
  "devDependencies": {
69
- "@nestjs/config": "^4.0.2",
70
60
  "@swc/core": "^1.13.5",
61
+ "@tsconfig/node22": "^22.0.5",
71
62
  "@types/node": "^24.6.2",
72
63
  "@typescript-eslint/eslint-plugin": "^8.45.0",
73
64
  "@typescript-eslint/parser": "^8.45.0",
74
65
  "eslint": "^9.37.0",
75
- "reflect-metadata": "^0.2.2",
76
66
  "rimraf": "^6.0.1",
77
- "rxjs": "^7.8.2",
78
67
  "tsup": "^8.5.0",
79
68
  "typescript": "^5.9.3",
80
- "vitest": "^3.2.4",
81
- "zod": "^4.1.11"
82
- },
83
- "tsup": {
84
- "entry": [
85
- "src/index.ts"
86
- ],
87
- "dts": {
88
- "resolve": true,
89
- "tsconfig": "tsconfig.build.json"
90
- },
91
- "format": [
92
- "cjs",
93
- "esm"
94
- ],
95
- "sourcemap": true,
96
- "clean": true,
97
- "minify": true
69
+ "vitest": "^3.2.4"
98
70
  }
99
71
  }