potatejs 0.14.0 → 0.15.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/README.md +1 -1
- package/package.json +9 -2
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "potatejs",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.15.0",
|
|
4
4
|
"description": "Super charged UI library with modern React API and native templates.",
|
|
5
5
|
"author": "uniho",
|
|
6
6
|
"license": "MIT",
|
|
@@ -18,7 +18,9 @@
|
|
|
18
18
|
"exports": {
|
|
19
19
|
".": {
|
|
20
20
|
"types": "./dist/type.d.ts",
|
|
21
|
-
"import": "./dist/index.js"
|
|
21
|
+
"import": "./dist/index.js",
|
|
22
|
+
"require": "./dist/index.js",
|
|
23
|
+
"default": "./dist/index.js"
|
|
22
24
|
},
|
|
23
25
|
"./vite": {
|
|
24
26
|
"types": "./dist/type.d.ts",
|
|
@@ -27,6 +29,11 @@
|
|
|
27
29
|
"./esbuild": {
|
|
28
30
|
"types": "./dist/type.d.ts",
|
|
29
31
|
"import": "./dist/index-esbuild.js"
|
|
32
|
+
},
|
|
33
|
+
"./jsx-runtime": {
|
|
34
|
+
"import": "./dist/index.js",
|
|
35
|
+
"require": "./dist/index.js",
|
|
36
|
+
"default": "./dist/index.js"
|
|
30
37
|
}
|
|
31
38
|
},
|
|
32
39
|
"bin": {
|