@alwatr/nanotron 4.10.1 → 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.1",
5
- "author": "S. Ali Mihandoost <ali.mihandoost@gmail.com>",
6
- "bugs": "https://github.com/Alwatr/nanotron/issues",
7
- "dependencies": {
8
- "@alwatr/crypto": "4.10.1",
9
- "@alwatr/nanotron-api-server": "4.10.1",
10
- "@alwatr/pre-handlers": "4.10.1"
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,36 +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
- "sideEffects": false,
70
- "type": "module",
71
- "types": "./dist/main.d.ts",
72
- "gitHead": "e077211736b90023d4842a23b252dc5284d0445a"
69
+ "gitHead": "4a25cd3e0499cf61dd761e87d3711abf9b0cd208"
73
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,232 +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.1](https://github.com/Alwatr/nanotron/compare/v4.10.0...v4.10.1) (2025-09-21)
7
-
8
- ### 🧹 Miscellaneous Chores
9
-
10
- * add "sideEffects": false to package.json files for better tree-shaking ([2aae07b](https://github.com/Alwatr/nanotron/commit/2aae07b0e1757b6035ea0ca8c1b0eda64a13dfcc))
11
-
12
- ## [4.10.0](https://github.com/Alwatr/nanotron/compare/v4.9.4...v4.10.0) (2025-09-21)
13
-
14
- ### 🐛 Bug Fixes
15
-
16
- * update workspace dependency versioning to use wildcard for nanotron-api-server ([0f62667](https://github.com/Alwatr/nanotron/commit/0f62667adfb3d35026ebe143b8f682d128ccfdc1))
17
-
18
- ### 🔨 Code Refactoring
19
-
20
- * remove unused import and development mode tracer from main.ts ([4d316cb](https://github.com/Alwatr/nanotron/commit/4d316cb45d8cb7bec8823acd2426792bfd26824b))
21
-
22
- ### 🧹 Miscellaneous Chores
23
-
24
- * add missing reference to "../crypto" in tsconfig.json ([363d070](https://github.com/Alwatr/nanotron/commit/363d070282838ccf73a9fa5905868f6494fa572b))
25
- * remove Exir Studio sponsorship logo from multiple README files ([af3fd5d](https://github.com/Alwatr/nanotron/commit/af3fd5dda9b57d0948003db1feb0dc2dad4883d7))
26
- * standardize formatting in tsconfig.json files by removing trailing commas ([fb9c6b9](https://github.com/Alwatr/nanotron/commit/fb9c6b9648b04b038db212727e8d38761d081a65))
27
- * 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))
28
- * update @alwatr/nanolib and related dependencies to version 6.x ([d824f0d](https://github.com/Alwatr/nanotron/commit/d824f0d5b8e008ec758842997a6e2ee6f7d078d5))
29
- * update licenses from AGPL-3.0 to MPL-2.0 ([a84513e](https://github.com/Alwatr/nanotron/commit/a84513efbe12b9570c7550c887f2cdfbf67fc82b))
30
-
31
- ### 🔗 Dependencies update
32
-
33
- * remove @alwatr/nanolib from dependencies in package.json ([5d5f774](https://github.com/Alwatr/nanotron/commit/5d5f774ffb90b226be5cacd36d78b49a853c124c))
34
-
35
- ## [4.9.4](https://github.com/Alwatr/nanotron/compare/v4.9.3...v4.9.4) (2025-08-23)
36
-
37
- ### 🔨 Code Refactoring
38
-
39
- * reorganize package.json files for consistency and clarity ([bde116e](https://github.com/Alwatr/nanotron/commit/bde116e21f9d9bd6084940e257438916d2c3d312)) by @alimd
40
-
41
- ### 🔗 Dependencies update
42
-
43
- * downgrade @types/node version to 22.17.2 in all package.json files ([4f01e14](https://github.com/Alwatr/nanotron/commit/4f01e1408d8d0954865eb9d20f90178f13e98719)) by @alimd
44
- * update dependencies for eslint-config, lerna-lite, typescript, and nanolib ([de16a71](https://github.com/Alwatr/nanotron/commit/de16a718bb1c0fa569d39c824ec39a1e67ef8dfe)) by @alimd
45
-
46
- ## [4.9.3](https://github.com/Alwatr/nanotron/compare/v4.9.2...v4.9.3) (2025-07-23)
47
-
48
- **Note:** Version bump only for package @alwatr/nanotron
49
-
50
- ## [4.9.2](https://github.com/Alwatr/nanotron/compare/v4.9.1...v4.9.2) (2025-07-23)
51
-
52
- ### Dependencies update
53
-
54
- * update dependencies to latest versions ([353d048](https://github.com/Alwatr/nanotron/commit/353d0485a5c21ab219d84cd0a6c35f62b46c2da9)) by @alimd
55
-
56
- ## [4.9.1](https://github.com/Alwatr/nanotron/compare/v4.9.0...v4.9.1) (2025-03-06)
57
-
58
- ### Dependencies update
59
-
60
- * **deps-dev:** bump the dependencies group with 5 updates ([e6a00eb](https://github.com/Alwatr/nanotron/commit/e6a00eb139f70f2396ecf12b68103b40aa785521)) by @dependabot[bot]
61
- * 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 @
62
-
63
- ## [4.9.0](https://github.com/Alwatr/nanotron/compare/v4.8.1...v4.9.0) (2025-02-26)
64
-
65
- ### Dependencies update
66
-
67
- * 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
68
-
69
- ## [4.8.1](https://github.com/Alwatr/nanotron/compare/v4.8.0...v4.8.1) (2025-02-18)
70
-
71
- ### Dependencies update
72
-
73
- * **deps-dev:** bump the dependencies group across 1 directory with 11 updates ([9257e08](https://github.com/Alwatr/nanotron/commit/9257e08b96f5661a7e13e153b9c71d9dbc08fd18)) by @dependabot[bot]
74
- * update TypeScript, Prettier, and various dependencies to latest versions ([5c0f752](https://github.com/Alwatr/nanotron/commit/5c0f7521851acaabb2466e459754c130d7ebf31b)) by @
75
-
76
- ## [4.8.0](https://github.com/Alwatr/nanotron/compare/v4.7.0...v4.8.0) (2024-11-08)
77
-
78
- **Note:** Version bump only for package @alwatr/nanotron
79
-
80
- ## [4.7.0](https://github.com/Alwatr/nanotron/compare/v4.6.0...v4.7.0) (2024-11-07)
81
-
82
- **Note:** Version bump only for package @alwatr/nanotron
83
-
84
- ## [4.6.0](https://github.com/Alwatr/nanotron/compare/v4.5.2...v4.6.0) (2024-11-07)
85
-
86
- ### Dependencies update
87
-
88
- * **deps-dev:** bump @types/node in the dependencies group ([9901819](https://github.com/Alwatr/nanotron/commit/9901819d0a7fef85736951f354bc1846294bb7fe)) by @dependabot[bot]
89
- * **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]
90
-
91
- ## [4.5.2](https://github.com/Alwatr/nanotron/compare/v4.5.1...v4.5.2) (2024-11-02)
92
-
93
- ### Dependencies update
94
-
95
- * **deps:** bump the alwatr group with 6 updates ([6636bb3](https://github.com/Alwatr/nanotron/commit/6636bb307401e28863eb27288d5abbaab2d67e18)) by @dependabot[bot]
96
- * update ([86fbeb6](https://github.com/Alwatr/nanotron/commit/86fbeb663d94452f3596d0894ec19d4c6bed3099)) by @
97
-
98
- ## [4.5.1](https://github.com/Alwatr/nanotron/compare/v4.5.0...v4.5.1) (2024-10-28)
99
-
100
- **Note:** Version bump only for package @alwatr/nanotron
101
-
102
- ## [4.5.0](https://github.com/Alwatr/nanotron/compare/v4.4.1...v4.5.0) (2024-10-28)
103
-
104
- ### Features
105
-
106
- * **nanotron:** use `pre-handlers` package ([11595c8](https://github.com/Alwatr/nanotron/commit/11595c805fa85f0da44c12146d189fa98ad0846a)) by @mohammadhonarvar
107
-
108
- ### Dependencies update
109
-
110
- * bump the development-dependencies group across 1 directory with 2 updates ([8b3e101](https://github.com/Alwatr/nanotron/commit/8b3e10128af769ef95a2e7b2ed788e843eb47414)) by @dependabot[bot]
111
- * update nanolib v1.4.0 and other deps ([b8e7be7](https://github.com/Alwatr/nanotron/commit/b8e7be7b6c58d4f1cbc12593b2d6124f3d19b377)) by @
112
-
113
- ## [4.4.1](https://github.com/Alwatr/nanotron/compare/v4.4.0...v4.4.1) (2024-10-16)
114
-
115
- ### Dependencies update
116
-
117
- * update ([8917c2e](https://github.com/Alwatr/nanotron/commit/8917c2e637781fe219c5031f414de3dea82cf371)) by @
118
-
119
- ## [4.4.0](https://github.com/Alwatr/nanotron/compare/v4.3.0...v4.4.0) (2024-10-14)
120
-
121
- **Note:** Version bump only for package @alwatr/nanotron
122
-
123
- ## [4.3.0](https://github.com/Alwatr/nanotron/compare/v4.2.2...v4.3.0) (2024-10-11)
124
-
125
- ### Features
126
-
127
- * **nanotron:** install `nanolib` packages & export them here ([169f360](https://github.com/Alwatr/nanotron/commit/169f36053c9ff94192e7126695859ff5e4e275b9)) by @mohammadhonarvar
128
- * 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
129
-
130
- ### Bug Fixes
131
-
132
- * **nanotro:** update `import`s & remove extra `export`s ([2bc4d2e](https://github.com/Alwatr/nanotron/commit/2bc4d2e160e39e7633bcdb15bd2fac13ed310629)) by @mohammadhonarvar
133
-
134
- ### Code Refactoring
135
-
136
- * update `import`s & packages based on the latest changes of `nanolib` ([7652b5d](https://github.com/Alwatr/nanotron/commit/7652b5d9cc69218f2ff28bda3d0d8f52f147c6f6)) by @mohammadhonarvar
137
-
138
- ### Miscellaneous Chores
139
-
140
- * edited README ([d707d38](https://github.com/Alwatr/nanotron/commit/d707d389e085dd320402521cb23af5805013d777)) by @ArmanAsadian
141
-
142
- ### Dependencies update
143
-
144
- * update ([834ffcc](https://github.com/Alwatr/nanotron/commit/834ffcc8f6de96cc11a1a6fa933f948b7813cde6)) by @mohammadhonarvar
145
- * update ([fab97ef](https://github.com/Alwatr/nanotron/commit/fab97ef111f2a173dccd673e84041b4a0fc6e900)) by @mohammadhonarvar
146
-
147
- ## [4.2.2](https://github.com/Alwatr/nanotron/compare/v4.2.1...v4.2.2) (2024-09-29)
148
-
149
- ### Miscellaneous Chores
150
-
151
- * **nanotron:** change the license to AGPL-3.0 ([a1699ee](https://github.com/Alwatr/nanotron/commit/a1699ee5154577dcb85476bc14c4d9472c50143f)) by @ArmanAsadian
152
-
153
- ### Dependencies update
154
-
155
- * bump @types/node in the development-dependencies group ([9c8d7d5](https://github.com/Alwatr/nanotron/commit/9c8d7d518d9a5da2ea57ac2b210a8697267e6d3d)) by @dependabot[bot]
156
- * update ([1c4ef63](https://github.com/Alwatr/nanotron/commit/1c4ef635fc969d4abd416aea2b954de674748da8)) by @AliMD
157
-
158
- ## [4.2.1](https://github.com/Alwatr/nanotron/compare/v4.2.0...v4.2.1) (2024-09-24)
159
-
160
- ### Dependencies update
161
-
162
- * update ([e698199](https://github.com/Alwatr/nanotron/commit/e698199e4a41532de8e9c799db96b9bde2a647f6)) by @AliMD
163
-
164
- ## [4.2.0](https://github.com/Alwatr/nanotron/compare/v4.1.0...v4.2.0) (2024-09-23)
165
-
166
- ### Features
167
-
168
- * Add @alwatr/crypto dependency to nanotron package.json and tsconfig.json ([94cdf28](https://github.com/Alwatr/nanotron/commit/94cdf28bbfcd6b77ebd60ceb93916414e9e11621)) by @AliMD
169
-
170
- ### Bug Fixes
171
-
172
- * export crypto from nanotron ([21f00d2](https://github.com/Alwatr/nanotron/commit/21f00d2d59fb7ac9fd4e7a8e4da3413f320a024d)) by @njfamirm
173
-
174
- ### Dependencies update
175
-
176
- * bump the alwatr-dependencies group with 6 updates ([1c8a8ec](https://github.com/Alwatr/nanotron/commit/1c8a8ec468aa31c79de45f0e897cc45578242981)) by @dependabot[bot]
177
- * bump the development-dependencies group with 2 updates ([e3bc7f7](https://github.com/Alwatr/nanotron/commit/e3bc7f7dcbf1779a3fdf8fbe18c4f8b4095cc222)) by @dependabot[bot]
178
- * update ([d9f8d57](https://github.com/Alwatr/nanotron/commit/d9f8d577b058b4e945db7dfc1c5c68da78c4112f)) by @AliMD
179
-
180
- ## [4.1.0](https://github.com/Alwatr/nanotron/compare/v4.0.2...v4.1.0) (2024-09-14)
181
-
182
- ### Features
183
-
184
- * route handlers to use 'call' method for binding 'this' ([69517c1](https://github.com/Alwatr/nanotron/commit/69517c16909f8a9a4720c4863501b01e6ab0834e)) by @
185
-
186
- ## [4.0.2](https://github.com/Alwatr/nanotron/compare/v4.0.1...v4.0.2) (2024-09-14)
187
-
188
- ### Bug Fixes
189
-
190
- * definePackage ([a2edcc1](https://github.com/Alwatr/nanotron/commit/a2edcc1b3a4822371cefa4a28ff62a7c6754287e)) by @AliMD
191
-
192
- ## [4.0.1](https://github.com/Alwatr/nanotron/compare/v4.0.0...v4.0.1) (2024-09-14)
193
-
194
- **Note:** Version bump only for package @alwatr/nanotron
195
-
196
- ## [4.0.0](https://github.com/Alwatr/nanotron/compare/v4.0.0-alpha.3...v4.0.0) (2024-09-14)
197
-
198
- **Note:** Version bump only for package @alwatr/nanotron
199
-
200
- ## [4.0.0-alpha.3](https://github.com/Alwatr/nanotron/compare/v4.0.0-alpha.2...v4.0.0-alpha.3) (2024-09-13)
201
-
202
- ### Features
203
-
204
- * **api-server:** add new endpoint for hello2 in API demo ([818c710](https://github.com/Alwatr/nanotron/commit/818c710425c1fc7f93150bac309a207fc2405619)) by @AliMD
205
- * **demo:** add POST /echo-body endpoint to echo request body ([f13b916](https://github.com/Alwatr/nanotron/commit/f13b91607abf33e5e8978fbd4ad26bc7ada355d3)) by @AliMD
206
-
207
- ## [4.0.0-alpha.2](https://github.com/Alwatr/nanotron/compare/v4.0.0-alpha.1...v4.0.0-alpha.2) (2024-09-12)
208
-
209
- ### Code Refactoring
210
-
211
- * **api-server:** Add new route for /hello endpoint ([d2dad04](https://github.com/Alwatr/nanotron/commit/d2dad04bd6e288b99e145a8af1bbadba8d6f7cbe)) by @AliMD
212
-
213
- ### Miscellaneous Chores
214
-
215
- * update demo ([218d375](https://github.com/Alwatr/nanotron/commit/218d3751266eff7367e9056f1763958a1100cdef)) by @
216
-
217
- ## [4.0.0-alpha.1](https://github.com/Alwatr/nanotron/compare/v4.0.0-alpha.0...v4.0.0-alpha.1) (2024-09-11)
218
-
219
- ### Features
220
-
221
- * **demo:** add 404 test ([b15bf5d](https://github.com/Alwatr/nanotron/commit/b15bf5d4dded330f710dc6b2516506c8dc31261a)) by @AliMD
222
-
223
- ### Bug Fixes
224
-
225
- * **demo:** update with new apis ([16fceca](https://github.com/Alwatr/nanotron/commit/16fceca7df279bf908878d15b0ef78adfaeed582)) by @
226
-
227
- ## [4.0.0-alpha.0](https://github.com/Alwatr/nanotron/compare/v1.2.7...v4.0.0-alpha.0) (2024-09-10)
228
-
229
- ### Features
230
-
231
- * Add API routes for root and hello endpoints in api-server demo ([4692fbb](https://github.com/Alwatr/nanotron/commit/4692fbb1ee54d481f35583b17e51a9d9c875da30)) by @AliMD
232
- * 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.1 */
2
- __dev_mode__: console.debug("📦 @alwatr/nanotron v4.10.1");
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.1 */
2
- __dev_mode__: console.debug("📦 @alwatr/nanotron v4.10.1");
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
- }