@alwatr/nanotron 4.10.0 → 9.1.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/dist/main.js ADDED
@@ -0,0 +1,5 @@
1
+ /* 📦 @alwatr/nanotron v9.1.0 */
2
+ export*from"@alwatr/nanotron-api-server";export*from"@alwatr/crypto";export*from"@alwatr/pre-handlers";
3
+
4
+ //# debugId=F2CA67E3E6394D3E64756E2164756E21
5
+ //# sourceMappingURL=main.js.map
@@ -0,0 +1,10 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../src/main.ts"],
4
+ "sourcesContent": [
5
+ "export * from '@alwatr/nanotron-api-server';\nexport * from '@alwatr/crypto';\nexport * from '@alwatr/pre-handlers';\n"
6
+ ],
7
+ "mappings": ";AAAA,yCACA,4BACA",
8
+ "debugId": "F2CA67E3E6394D3E64756E2164756E21",
9
+ "names": []
10
+ }
package/package.json CHANGED
@@ -1,35 +1,63 @@
1
1
  {
2
2
  "name": "@alwatr/nanotron",
3
+ "version": "9.1.0",
3
4
  "description": "Nanotron: Your Lightweight, High-Performance Micro/Nano Service Framework. Nanotron is designed for building blazingly fast and efficient microservices and APIs. Its minimalist approach and focus on performance make it ideal for resource-constrained environments and scenarios where every millisecond counts.",
4
- "version": "4.10.0",
5
- "author": "S. Ali Mihandoost <ali.mihandoost@gmail.com>",
6
- "bugs": "https://github.com/Alwatr/nanotron/issues",
7
- "dependencies": {
8
- "@alwatr/crypto": "4.10.0",
9
- "@alwatr/nanotron-api-server": "4.10.0",
10
- "@alwatr/pre-handlers": "4.10.0"
11
- },
12
- "devDependencies": {
13
- "@alwatr/nano-build": "^6.3.1",
14
- "@alwatr/prettier-config": "^5.0.4",
15
- "@alwatr/tsconfig-base": "^6.0.2",
16
- "@alwatr/type-helper": "^6.1.1",
17
- "@types/node": "^22.18.6",
18
- "jest": "^30.1.3",
19
- "typescript": "^5.9.2"
5
+ "license": "MPL-2.0",
6
+ "author": "S. Ali Mihandoost <ali.mihandoost@gmail.com> (https://ali.mihandoost.com)",
7
+ "type": "module",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/Alwatr/alwatr",
11
+ "directory": "pkg/nanotron"
20
12
  },
13
+ "homepage": "https://github.com/Alwatr/alwatr/tree/main/pkg/nanotron#readme",
14
+ "bugs": "https://github.com/Alwatr/alwatr/issues",
21
15
  "exports": {
22
16
  ".": {
23
17
  "types": "./dist/main.d.ts",
24
- "import": "./dist/main.mjs",
25
- "require": "./dist/main.cjs"
18
+ "import": "./dist/main.js",
19
+ "default": "./dist/main.js"
26
20
  }
27
21
  },
22
+ "sideEffects": false,
23
+ "dependencies": {
24
+ "@alwatr/crypto": "9.1.0",
25
+ "@alwatr/nanotron-api-server": "9.1.0",
26
+ "@alwatr/pre-handlers": "9.1.0"
27
+ },
28
+ "devDependencies": {
29
+ "@alwatr/nano-build": "9.1.0",
30
+ "@alwatr/tsconfig-base": "9.1.0",
31
+ "@alwatr/type-helper": "9.1.0",
32
+ "@types/node": "^25.5.0",
33
+ "typescript": "^6.0.2"
34
+ },
35
+ "scripts": {
36
+ "b": "bun run build",
37
+ "build": "bun run build:ts && bun run build:es",
38
+ "build:es": "nano-build --preset=module src/main.ts",
39
+ "build:ts": "tsc --build",
40
+ "cl": "bun run clean",
41
+ "clean": "rm -rfv dist *.tsbuildinfo",
42
+ "format": "prettier --write \"src/**/*.ts\"",
43
+ "lint": "eslint src/ --ext .ts",
44
+ "t": "bun run test",
45
+ "test": "ALWATR_DEBUG=0 bun test",
46
+ "w": "bun run watch",
47
+ "watch": "bun run watch:ts & bun run watch:es",
48
+ "watch:es": "bun run build:es --watch",
49
+ "watch:ts": "bun run build:ts --watch --preserveWatchOutput"
50
+ },
28
51
  "files": [
29
- "**/*.{js,mjs,cjs,map,d.ts,html,md}",
30
- "!demo/**/*"
52
+ "dist",
53
+ "src/**/*.ts",
54
+ "!src/**/*.test.ts",
55
+ "README.md",
56
+ "LICENSE"
31
57
  ],
32
- "homepage": "https://github.com/Alwatr/nanotron#readme",
58
+ "publishConfig": {
59
+ "access": "public"
60
+ },
33
61
  "keywords": [
34
62
  "alwatr",
35
63
  "api",
@@ -38,35 +66,5 @@
38
66
  "server",
39
67
  "typescript"
40
68
  ],
41
- "license": "MPL-2.0",
42
- "main": "./dist/main.cjs",
43
- "module": "./dist/main.mjs",
44
- "prettier": "@alwatr/prettier-config",
45
- "publishConfig": {
46
- "access": "public"
47
- },
48
- "repository": {
49
- "type": "git",
50
- "url": "https://github.com/Alwatr/nanotron",
51
- "directory": "packages/nanotron"
52
- },
53
- "scripts": {
54
- "b": "yarn run build",
55
- "build": "yarn run build:ts & yarn run build:es",
56
- "build:es": "nano-build --preset=module",
57
- "build:ts": "tsc --build",
58
- "c": "yarn run clean",
59
- "cb": "yarn run clean && yarn run build",
60
- "clean": "rm -rfv dist *.tsbuildinfo",
61
- "d": "yarn run build:es && yarn node --enable-source-maps --trace-warnings",
62
- "t": "yarn run test",
63
- "test": "NODE_OPTIONS=\"$NODE_OPTIONS --enable-source-maps --experimental-vm-modules\" jest",
64
- "w": "yarn run watch",
65
- "watch": "yarn run watch:ts & yarn run watch:es",
66
- "watch:es": "yarn run build:es --watch",
67
- "watch:ts": "yarn run build:ts --watch --preserveWatchOutput"
68
- },
69
- "type": "module",
70
- "types": "./dist/main.d.ts",
71
- "gitHead": "234113e16cdec26d18c5687219d5f5c29829e045"
69
+ "gitHead": "4a25cd3e0499cf61dd761e87d3711abf9b0cd208"
72
70
  }
package/src/main.ts ADDED
@@ -0,0 +1,3 @@
1
+ export * from '@alwatr/nanotron-api-server';
2
+ export * from '@alwatr/crypto';
3
+ export * from '@alwatr/pre-handlers';
package/CHANGELOG.md DELETED
@@ -1,226 +0,0 @@
1
- # Change Log
2
-
3
- All notable changes to this project will be documented in this file.
4
- See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
-
6
- ## [4.10.0](https://github.com/Alwatr/nanotron/compare/v4.9.4...v4.10.0) (2025-09-21)
7
-
8
- ### 🐛 Bug Fixes
9
-
10
- * update workspace dependency versioning to use wildcard for nanotron-api-server ([0f62667](https://github.com/Alwatr/nanotron/commit/0f62667adfb3d35026ebe143b8f682d128ccfdc1))
11
-
12
- ### 🔨 Code Refactoring
13
-
14
- * remove unused import and development mode tracer from main.ts ([4d316cb](https://github.com/Alwatr/nanotron/commit/4d316cb45d8cb7bec8823acd2426792bfd26824b))
15
-
16
- ### 🧹 Miscellaneous Chores
17
-
18
- * add missing reference to "../crypto" in tsconfig.json ([363d070](https://github.com/Alwatr/nanotron/commit/363d070282838ccf73a9fa5905868f6494fa572b))
19
- * remove Exir Studio sponsorship logo from multiple README files ([af3fd5d](https://github.com/Alwatr/nanotron/commit/af3fd5dda9b57d0948003db1feb0dc2dad4883d7))
20
- * standardize formatting in tsconfig.json files by removing trailing commas ([fb9c6b9](https://github.com/Alwatr/nanotron/commit/fb9c6b9648b04b038db212727e8d38761d081a65))
21
- * update @alwatr/nanolib and @alwatr/nano-build to version 6.1.1 and 6.3.1 respectively ([81b3d5e](https://github.com/Alwatr/nanotron/commit/81b3d5ebf5ecc1242ee0a010631e4d920af9f3dd))
22
- * update @alwatr/nanolib and related dependencies to version 6.x ([d824f0d](https://github.com/Alwatr/nanotron/commit/d824f0d5b8e008ec758842997a6e2ee6f7d078d5))
23
- * update licenses from AGPL-3.0 to MPL-2.0 ([a84513e](https://github.com/Alwatr/nanotron/commit/a84513efbe12b9570c7550c887f2cdfbf67fc82b))
24
-
25
- ### 🔗 Dependencies update
26
-
27
- * remove @alwatr/nanolib from dependencies in package.json ([5d5f774](https://github.com/Alwatr/nanotron/commit/5d5f774ffb90b226be5cacd36d78b49a853c124c))
28
-
29
- ## [4.9.4](https://github.com/Alwatr/nanotron/compare/v4.9.3...v4.9.4) (2025-08-23)
30
-
31
- ### 🔨 Code Refactoring
32
-
33
- * reorganize package.json files for consistency and clarity ([bde116e](https://github.com/Alwatr/nanotron/commit/bde116e21f9d9bd6084940e257438916d2c3d312)) by @alimd
34
-
35
- ### 🔗 Dependencies update
36
-
37
- * downgrade @types/node version to 22.17.2 in all package.json files ([4f01e14](https://github.com/Alwatr/nanotron/commit/4f01e1408d8d0954865eb9d20f90178f13e98719)) by @alimd
38
- * update dependencies for eslint-config, lerna-lite, typescript, and nanolib ([de16a71](https://github.com/Alwatr/nanotron/commit/de16a718bb1c0fa569d39c824ec39a1e67ef8dfe)) by @alimd
39
-
40
- ## [4.9.3](https://github.com/Alwatr/nanotron/compare/v4.9.2...v4.9.3) (2025-07-23)
41
-
42
- **Note:** Version bump only for package @alwatr/nanotron
43
-
44
- ## [4.9.2](https://github.com/Alwatr/nanotron/compare/v4.9.1...v4.9.2) (2025-07-23)
45
-
46
- ### Dependencies update
47
-
48
- * update dependencies to latest versions ([353d048](https://github.com/Alwatr/nanotron/commit/353d0485a5c21ab219d84cd0a6c35f62b46c2da9)) by @alimd
49
-
50
- ## [4.9.1](https://github.com/Alwatr/nanotron/compare/v4.9.0...v4.9.1) (2025-03-06)
51
-
52
- ### Dependencies update
53
-
54
- * **deps-dev:** bump the dependencies group with 5 updates ([e6a00eb](https://github.com/Alwatr/nanotron/commit/e6a00eb139f70f2396ecf12b68103b40aa785521)) by @dependabot[bot]
55
- * update @alwatr/nanolib and @alwatr/nano-build to version 5.5.0; bump @alwatr/type-helper to version 5.4.0 ([1e8b122](https://github.com/Alwatr/nanotron/commit/1e8b1228034af44e0d4914f5100d9e564c05a5a6)) by @
56
-
57
- ## [4.9.0](https://github.com/Alwatr/nanotron/compare/v4.8.1...v4.9.0) (2025-02-26)
58
-
59
- ### Dependencies update
60
-
61
- * bump @types/node from 22.13.4 to 22.13.5 and prettier from 3.5.1 to 3.5.2 across multiple packages ([3d55c9a](https://github.com/Alwatr/nanotron/commit/3d55c9a4044773fdc8d7c8b635311f2043f48569)) by @alimd
62
-
63
- ## [4.8.1](https://github.com/Alwatr/nanotron/compare/v4.8.0...v4.8.1) (2025-02-18)
64
-
65
- ### Dependencies update
66
-
67
- * **deps-dev:** bump the dependencies group across 1 directory with 11 updates ([9257e08](https://github.com/Alwatr/nanotron/commit/9257e08b96f5661a7e13e153b9c71d9dbc08fd18)) by @dependabot[bot]
68
- * update TypeScript, Prettier, and various dependencies to latest versions ([5c0f752](https://github.com/Alwatr/nanotron/commit/5c0f7521851acaabb2466e459754c130d7ebf31b)) by @
69
-
70
- ## [4.8.0](https://github.com/Alwatr/nanotron/compare/v4.7.0...v4.8.0) (2024-11-08)
71
-
72
- **Note:** Version bump only for package @alwatr/nanotron
73
-
74
- ## [4.7.0](https://github.com/Alwatr/nanotron/compare/v4.6.0...v4.7.0) (2024-11-07)
75
-
76
- **Note:** Version bump only for package @alwatr/nanotron
77
-
78
- ## [4.6.0](https://github.com/Alwatr/nanotron/compare/v4.5.2...v4.6.0) (2024-11-07)
79
-
80
- ### Dependencies update
81
-
82
- * **deps-dev:** bump @types/node in the dependencies group ([9901819](https://github.com/Alwatr/nanotron/commit/9901819d0a7fef85736951f354bc1846294bb7fe)) by @dependabot[bot]
83
- * **deps:** bump @alwatr/nanolib from 5.0.0 to 5.2.1 in the alwatr group ([f06afb7](https://github.com/Alwatr/nanotron/commit/f06afb74f363c478ffc5967bafadfa2bc9009129)) by @dependabot[bot]
84
-
85
- ## [4.5.2](https://github.com/Alwatr/nanotron/compare/v4.5.1...v4.5.2) (2024-11-02)
86
-
87
- ### Dependencies update
88
-
89
- * **deps:** bump the alwatr group with 6 updates ([6636bb3](https://github.com/Alwatr/nanotron/commit/6636bb307401e28863eb27288d5abbaab2d67e18)) by @dependabot[bot]
90
- * update ([86fbeb6](https://github.com/Alwatr/nanotron/commit/86fbeb663d94452f3596d0894ec19d4c6bed3099)) by @
91
-
92
- ## [4.5.1](https://github.com/Alwatr/nanotron/compare/v4.5.0...v4.5.1) (2024-10-28)
93
-
94
- **Note:** Version bump only for package @alwatr/nanotron
95
-
96
- ## [4.5.0](https://github.com/Alwatr/nanotron/compare/v4.4.1...v4.5.0) (2024-10-28)
97
-
98
- ### Features
99
-
100
- * **nanotron:** use `pre-handlers` package ([11595c8](https://github.com/Alwatr/nanotron/commit/11595c805fa85f0da44c12146d189fa98ad0846a)) by @mohammadhonarvar
101
-
102
- ### Dependencies update
103
-
104
- * bump the development-dependencies group across 1 directory with 2 updates ([8b3e101](https://github.com/Alwatr/nanotron/commit/8b3e10128af769ef95a2e7b2ed788e843eb47414)) by @dependabot[bot]
105
- * update nanolib v1.4.0 and other deps ([b8e7be7](https://github.com/Alwatr/nanotron/commit/b8e7be7b6c58d4f1cbc12593b2d6124f3d19b377)) by @
106
-
107
- ## [4.4.1](https://github.com/Alwatr/nanotron/compare/v4.4.0...v4.4.1) (2024-10-16)
108
-
109
- ### Dependencies update
110
-
111
- * update ([8917c2e](https://github.com/Alwatr/nanotron/commit/8917c2e637781fe219c5031f414de3dea82cf371)) by @
112
-
113
- ## [4.4.0](https://github.com/Alwatr/nanotron/compare/v4.3.0...v4.4.0) (2024-10-14)
114
-
115
- **Note:** Version bump only for package @alwatr/nanotron
116
-
117
- ## [4.3.0](https://github.com/Alwatr/nanotron/compare/v4.2.2...v4.3.0) (2024-10-11)
118
-
119
- ### Features
120
-
121
- * **nanotron:** install `nanolib` packages & export them here ([169f360](https://github.com/Alwatr/nanotron/commit/169f36053c9ff94192e7126695859ff5e4e275b9)) by @mohammadhonarvar
122
- * update `import`s & packages based on the latest changes of `nanolib` & prevent `sideeffects` from `build` result ([1d234b8](https://github.com/Alwatr/nanotron/commit/1d234b83152fb246b793476898e9cf026aa52874)) by @mohammadhonarvar
123
-
124
- ### Bug Fixes
125
-
126
- * **nanotro:** update `import`s & remove extra `export`s ([2bc4d2e](https://github.com/Alwatr/nanotron/commit/2bc4d2e160e39e7633bcdb15bd2fac13ed310629)) by @mohammadhonarvar
127
-
128
- ### Code Refactoring
129
-
130
- * update `import`s & packages based on the latest changes of `nanolib` ([7652b5d](https://github.com/Alwatr/nanotron/commit/7652b5d9cc69218f2ff28bda3d0d8f52f147c6f6)) by @mohammadhonarvar
131
-
132
- ### Miscellaneous Chores
133
-
134
- * edited README ([d707d38](https://github.com/Alwatr/nanotron/commit/d707d389e085dd320402521cb23af5805013d777)) by @ArmanAsadian
135
-
136
- ### Dependencies update
137
-
138
- * update ([834ffcc](https://github.com/Alwatr/nanotron/commit/834ffcc8f6de96cc11a1a6fa933f948b7813cde6)) by @mohammadhonarvar
139
- * update ([fab97ef](https://github.com/Alwatr/nanotron/commit/fab97ef111f2a173dccd673e84041b4a0fc6e900)) by @mohammadhonarvar
140
-
141
- ## [4.2.2](https://github.com/Alwatr/nanotron/compare/v4.2.1...v4.2.2) (2024-09-29)
142
-
143
- ### Miscellaneous Chores
144
-
145
- * **nanotron:** change the license to AGPL-3.0 ([a1699ee](https://github.com/Alwatr/nanotron/commit/a1699ee5154577dcb85476bc14c4d9472c50143f)) by @ArmanAsadian
146
-
147
- ### Dependencies update
148
-
149
- * bump @types/node in the development-dependencies group ([9c8d7d5](https://github.com/Alwatr/nanotron/commit/9c8d7d518d9a5da2ea57ac2b210a8697267e6d3d)) by @dependabot[bot]
150
- * update ([1c4ef63](https://github.com/Alwatr/nanotron/commit/1c4ef635fc969d4abd416aea2b954de674748da8)) by @AliMD
151
-
152
- ## [4.2.1](https://github.com/Alwatr/nanotron/compare/v4.2.0...v4.2.1) (2024-09-24)
153
-
154
- ### Dependencies update
155
-
156
- * update ([e698199](https://github.com/Alwatr/nanotron/commit/e698199e4a41532de8e9c799db96b9bde2a647f6)) by @AliMD
157
-
158
- ## [4.2.0](https://github.com/Alwatr/nanotron/compare/v4.1.0...v4.2.0) (2024-09-23)
159
-
160
- ### Features
161
-
162
- * Add @alwatr/crypto dependency to nanotron package.json and tsconfig.json ([94cdf28](https://github.com/Alwatr/nanotron/commit/94cdf28bbfcd6b77ebd60ceb93916414e9e11621)) by @AliMD
163
-
164
- ### Bug Fixes
165
-
166
- * export crypto from nanotron ([21f00d2](https://github.com/Alwatr/nanotron/commit/21f00d2d59fb7ac9fd4e7a8e4da3413f320a024d)) by @njfamirm
167
-
168
- ### Dependencies update
169
-
170
- * bump the alwatr-dependencies group with 6 updates ([1c8a8ec](https://github.com/Alwatr/nanotron/commit/1c8a8ec468aa31c79de45f0e897cc45578242981)) by @dependabot[bot]
171
- * bump the development-dependencies group with 2 updates ([e3bc7f7](https://github.com/Alwatr/nanotron/commit/e3bc7f7dcbf1779a3fdf8fbe18c4f8b4095cc222)) by @dependabot[bot]
172
- * update ([d9f8d57](https://github.com/Alwatr/nanotron/commit/d9f8d577b058b4e945db7dfc1c5c68da78c4112f)) by @AliMD
173
-
174
- ## [4.1.0](https://github.com/Alwatr/nanotron/compare/v4.0.2...v4.1.0) (2024-09-14)
175
-
176
- ### Features
177
-
178
- * route handlers to use 'call' method for binding 'this' ([69517c1](https://github.com/Alwatr/nanotron/commit/69517c16909f8a9a4720c4863501b01e6ab0834e)) by @
179
-
180
- ## [4.0.2](https://github.com/Alwatr/nanotron/compare/v4.0.1...v4.0.2) (2024-09-14)
181
-
182
- ### Bug Fixes
183
-
184
- * definePackage ([a2edcc1](https://github.com/Alwatr/nanotron/commit/a2edcc1b3a4822371cefa4a28ff62a7c6754287e)) by @AliMD
185
-
186
- ## [4.0.1](https://github.com/Alwatr/nanotron/compare/v4.0.0...v4.0.1) (2024-09-14)
187
-
188
- **Note:** Version bump only for package @alwatr/nanotron
189
-
190
- ## [4.0.0](https://github.com/Alwatr/nanotron/compare/v4.0.0-alpha.3...v4.0.0) (2024-09-14)
191
-
192
- **Note:** Version bump only for package @alwatr/nanotron
193
-
194
- ## [4.0.0-alpha.3](https://github.com/Alwatr/nanotron/compare/v4.0.0-alpha.2...v4.0.0-alpha.3) (2024-09-13)
195
-
196
- ### Features
197
-
198
- * **api-server:** add new endpoint for hello2 in API demo ([818c710](https://github.com/Alwatr/nanotron/commit/818c710425c1fc7f93150bac309a207fc2405619)) by @AliMD
199
- * **demo:** add POST /echo-body endpoint to echo request body ([f13b916](https://github.com/Alwatr/nanotron/commit/f13b91607abf33e5e8978fbd4ad26bc7ada355d3)) by @AliMD
200
-
201
- ## [4.0.0-alpha.2](https://github.com/Alwatr/nanotron/compare/v4.0.0-alpha.1...v4.0.0-alpha.2) (2024-09-12)
202
-
203
- ### Code Refactoring
204
-
205
- * **api-server:** Add new route for /hello endpoint ([d2dad04](https://github.com/Alwatr/nanotron/commit/d2dad04bd6e288b99e145a8af1bbadba8d6f7cbe)) by @AliMD
206
-
207
- ### Miscellaneous Chores
208
-
209
- * update demo ([218d375](https://github.com/Alwatr/nanotron/commit/218d3751266eff7367e9056f1763958a1100cdef)) by @
210
-
211
- ## [4.0.0-alpha.1](https://github.com/Alwatr/nanotron/compare/v4.0.0-alpha.0...v4.0.0-alpha.1) (2024-09-11)
212
-
213
- ### Features
214
-
215
- * **demo:** add 404 test ([b15bf5d](https://github.com/Alwatr/nanotron/commit/b15bf5d4dded330f710dc6b2516506c8dc31261a)) by @AliMD
216
-
217
- ### Bug Fixes
218
-
219
- * **demo:** update with new apis ([16fceca](https://github.com/Alwatr/nanotron/commit/16fceca7df279bf908878d15b0ef78adfaeed582)) by @
220
-
221
- ## [4.0.0-alpha.0](https://github.com/Alwatr/nanotron/compare/v1.2.7...v4.0.0-alpha.0) (2024-09-10)
222
-
223
- ### Features
224
-
225
- * Add API routes for root and hello endpoints in api-server demo ([4692fbb](https://github.com/Alwatr/nanotron/commit/4692fbb1ee54d481f35583b17e51a9d9c875da30)) by @AliMD
226
- * new package for export all nanotron packages ([1c065d2](https://github.com/Alwatr/nanotron/commit/1c065d2c9de1e0a1e4202783c42e42b78a191098)) by @AliMD
package/dist/main.cjs DELETED
@@ -1,4 +0,0 @@
1
- /** 📦 @alwatr/nanotron v4.10.0 */
2
- __dev_mode__: console.debug("📦 @alwatr/nanotron v4.10.0");
3
- "use strict";var __defProp=Object.defineProperty;var __getOwnPropDesc=Object.getOwnPropertyDescriptor;var __getOwnPropNames=Object.getOwnPropertyNames;var __hasOwnProp=Object.prototype.hasOwnProperty;var __copyProps=(to,from,except,desc)=>{if(from&&typeof from==="object"||typeof from==="function"){for(let key of __getOwnPropNames(from))if(!__hasOwnProp.call(to,key)&&key!==except)__defProp(to,key,{get:()=>from[key],enumerable:!(desc=__getOwnPropDesc(from,key))||desc.enumerable})}return to};var __reExport=(target,mod,secondTarget)=>(__copyProps(target,mod,"default"),secondTarget&&__copyProps(secondTarget,mod,"default"));var __toCommonJS=mod=>__copyProps(__defProp({},"__esModule",{value:true}),mod);var main_exports={};module.exports=__toCommonJS(main_exports);__reExport(main_exports,require("@alwatr/nanotron-api-server"),module.exports);__reExport(main_exports,require("@alwatr/crypto"),module.exports);__reExport(main_exports,require("@alwatr/pre-handlers"),module.exports);0&&(module.exports={...require("@alwatr/nanotron-api-server"),...require("@alwatr/crypto"),...require("@alwatr/pre-handlers")});
4
- //# sourceMappingURL=main.cjs.map
package/dist/main.cjs.map DELETED
@@ -1,7 +0,0 @@
1
- {
2
- "version": 3,
3
- "sources": ["../src/main.ts"],
4
- "sourcesContent": ["export * from '@alwatr/nanotron-api-server';\nexport * from '@alwatr/crypto';\nexport * from '@alwatr/pre-handlers';\n"],
5
- "mappings": ";;isBAAA,sFAAc,uCAAd,gBACA,wBAAc,0BADd,gBAEA,wBAAc,gCAFd",
6
- "names": []
7
- }
package/dist/main.mjs DELETED
@@ -1,4 +0,0 @@
1
- /** 📦 @alwatr/nanotron v4.10.0 */
2
- __dev_mode__: console.debug("📦 @alwatr/nanotron v4.10.0");
3
- export*from"@alwatr/nanotron-api-server";export*from"@alwatr/crypto";export*from"@alwatr/pre-handlers";
4
- //# sourceMappingURL=main.mjs.map
package/dist/main.mjs.map DELETED
@@ -1,7 +0,0 @@
1
- {
2
- "version": 3,
3
- "sources": ["../src/main.ts"],
4
- "sourcesContent": ["export * from '@alwatr/nanotron-api-server';\nexport * from '@alwatr/crypto';\nexport * from '@alwatr/pre-handlers';\n"],
5
- "mappings": ";;AAAA,WAAc,8BACd,WAAc,iBACd,WAAc",
6
- "names": []
7
- }