azurajs 3.0.0 → 3.0.1

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.
Files changed (1) hide show
  1. package/package.json +18 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "azurajs",
3
- "version": "3.0.0",
3
+ "version": "3.0.1",
4
4
  "description": "Ultra-fast TypeScript-first web framework for Node.js and Bun with decorator-based routing, zero dependencies, and built-in plugin system",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -8,42 +8,58 @@
8
8
  "exports": {
9
9
  ".": {
10
10
  "types": "./dist/index.d.ts",
11
+ "bun": "./dist/index.mjs",
11
12
  "import": "./dist/index.mjs",
13
+ "module": "./dist/index.mjs",
12
14
  "require": "./dist/index.js"
13
15
  },
14
16
  "./core": {
15
17
  "types": "./dist/core/index.d.ts",
18
+ "bun": "./dist/core/index.mjs",
16
19
  "import": "./dist/core/index.mjs",
20
+ "module": "./dist/core/index.mjs",
17
21
  "require": "./dist/core/index.js"
18
22
  },
19
23
  "./plugins": {
20
24
  "types": "./dist/plugins/index.d.ts",
25
+ "bun": "./dist/plugins/index.mjs",
21
26
  "import": "./dist/plugins/index.mjs",
27
+ "module": "./dist/plugins/index.mjs",
22
28
  "require": "./dist/plugins/index.js"
23
29
  },
24
30
  "./decorators": {
25
31
  "types": "./dist/decorators/index.d.ts",
32
+ "bun": "./dist/decorators/index.mjs",
26
33
  "import": "./dist/decorators/index.mjs",
34
+ "module": "./dist/decorators/index.mjs",
27
35
  "require": "./dist/decorators/index.js"
28
36
  },
29
37
  "./types": {
30
38
  "types": "./dist/types/index.d.ts",
39
+ "bun": "./dist/types/index.mjs",
31
40
  "import": "./dist/types/index.mjs",
41
+ "module": "./dist/types/index.mjs",
32
42
  "require": "./dist/types/index.js"
33
43
  },
34
44
  "./utils": {
35
45
  "types": "./dist/utils/index.d.ts",
46
+ "bun": "./dist/utils/index.mjs",
36
47
  "import": "./dist/utils/index.mjs",
48
+ "module": "./dist/utils/index.mjs",
37
49
  "require": "./dist/utils/index.js"
38
50
  },
39
51
  "./config": {
40
52
  "types": "./dist/config/index.d.ts",
53
+ "bun": "./dist/config/index.mjs",
41
54
  "import": "./dist/config/index.mjs",
55
+ "module": "./dist/config/index.mjs",
42
56
  "require": "./dist/config/index.js"
43
57
  },
44
58
  "./middleware": {
45
59
  "types": "./dist/middleware/index.d.ts",
60
+ "bun": "./dist/middleware/index.mjs",
46
61
  "import": "./dist/middleware/index.mjs",
62
+ "module": "./dist/middleware/index.mjs",
47
63
  "require": "./dist/middleware/index.js"
48
64
  }
49
65
  },
@@ -101,7 +117,7 @@
101
117
  },
102
118
  "repository": {
103
119
  "type": "git",
104
- "url": "https://github.com/azurajs/azura"
120
+ "url": "git+https://github.com/azurajs/azura.git"
105
121
  },
106
122
  "bugs": {
107
123
  "url": "https://github.com/azurajs/azura/issues"