@elurjs/core 3.6.0 → 3.6.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 +12 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elurjs/core",
3
- "version": "3.6.0",
3
+ "version": "3.6.1",
4
4
  "description": "A lightweight, fully reactive framework — no virtual DOM, no compiler, just signals and tagged templates.",
5
5
  "license": "MIT",
6
6
  "author": "Deiver Vasquez",
@@ -61,6 +61,14 @@
61
61
  "import": "./dist/lib/store.js",
62
62
  "require": "./dist/lib/store.cjs"
63
63
  },
64
+ "./plugins": {
65
+ "types": {
66
+ "import": "./dist/lib/elur/plugins.d.ts",
67
+ "require": "./dist/lib/elur/plugins.d.cts"
68
+ },
69
+ "import": "./dist/lib/plugins.js",
70
+ "require": "./dist/lib/plugins.cjs"
71
+ },
64
72
  "./async": {
65
73
  "types": {
66
74
  "import": "./dist/lib/elur/async.d.ts",
@@ -140,6 +148,9 @@
140
148
  "store": [
141
149
  "./dist/lib/elur/store.d.ts"
142
150
  ],
151
+ "plugins": [
152
+ "./dist/lib/elur/plugins.d.ts"
153
+ ],
143
154
  "async": [
144
155
  "./dist/lib/elur/async.d.ts"
145
156
  ],