ranui 0.1.4-alpha.2 → 0.1.4-alpha.5
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/package.json +55 -20
- package/readme.md +1 -1
- /package/dist/{index → index.js} +0 -0
package/package.json
CHANGED
|
@@ -1,34 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ranui",
|
|
3
|
-
"version": "0.1.4-alpha.
|
|
3
|
+
"version": "0.1.4-alpha.5",
|
|
4
4
|
"description": "UI Component library based on `Web Component`",
|
|
5
5
|
"main": "dist/umd/index.umd.cjs",
|
|
6
|
-
"module": "dist/
|
|
6
|
+
"module": "dist/index.js",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"types": "./dist/index.d.ts",
|
|
9
|
-
"
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
"require": "./dist/umd/index.umd.cjs"
|
|
14
|
-
},
|
|
15
|
-
"./*": {
|
|
16
|
-
"types": "./dist/components/*",
|
|
17
|
-
"import": "./dist/components/*",
|
|
18
|
-
"require": "./dist/umd/*"
|
|
19
|
-
}
|
|
9
|
+
"homepage": "https://chaxus.github.io/ran/src/ranui/",
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "git+https://github.com/chaxus/ran/tree/main/packages/ranui"
|
|
20
13
|
},
|
|
14
|
+
"author": "chaxus",
|
|
15
|
+
"license": "MIT",
|
|
21
16
|
"files": [
|
|
22
17
|
"dist/*"
|
|
23
18
|
],
|
|
24
19
|
"engines": {
|
|
25
20
|
"node": "^14.18.0 || >=16.0.0"
|
|
26
21
|
},
|
|
27
|
-
"homepage": "https://chaxus.github.io/ran/src/ranui/",
|
|
28
|
-
"repository": {
|
|
29
|
-
"type": "git",
|
|
30
|
-
"url": "git+https://github.com/chaxus/ran/tree/main/packages/ranui"
|
|
31
|
-
},
|
|
32
22
|
"keywords": [
|
|
33
23
|
"ran",
|
|
34
24
|
"component",
|
|
@@ -36,8 +26,53 @@
|
|
|
36
26
|
"ui",
|
|
37
27
|
"design"
|
|
38
28
|
],
|
|
39
|
-
"
|
|
40
|
-
|
|
29
|
+
"exports": {
|
|
30
|
+
".": {
|
|
31
|
+
"types": "./dist/index.d.ts",
|
|
32
|
+
"import": "./dist/index.js",
|
|
33
|
+
"require": "./dist/umd/index.umd.cjs"
|
|
34
|
+
},
|
|
35
|
+
"./button": {
|
|
36
|
+
"types": "./dist/components/button/index.d.ts",
|
|
37
|
+
"import": "./dist/components/button/index.js",
|
|
38
|
+
"require": "./dist/umd/index.umd.cjs"
|
|
39
|
+
},
|
|
40
|
+
"./icon": {
|
|
41
|
+
"types": "./dist/components/icon/index.d.ts",
|
|
42
|
+
"import": "./dist/components/icon/index.js",
|
|
43
|
+
"require": "./dist/umd/index.umd.cjs"
|
|
44
|
+
},
|
|
45
|
+
"./image": {
|
|
46
|
+
"types": "./dist/components/image/index.d.ts",
|
|
47
|
+
"import": "./dist/components/image/index.js",
|
|
48
|
+
"require": "./dist/umd/index.umd.cjs"
|
|
49
|
+
},
|
|
50
|
+
"./input": {
|
|
51
|
+
"types": "./dist/components/input/index.d.ts",
|
|
52
|
+
"import": "./dist/components/input/index.js",
|
|
53
|
+
"require": "./dist/umd/index.umd.cjs"
|
|
54
|
+
},
|
|
55
|
+
"./message": {
|
|
56
|
+
"types": "./dist/components/message/index.d.ts",
|
|
57
|
+
"import": "./dist/components/message/index.js",
|
|
58
|
+
"require": "./dist/umd/index.umd.cjs"
|
|
59
|
+
},
|
|
60
|
+
"./preview": {
|
|
61
|
+
"types": "./dist/components/preview/index.d.ts",
|
|
62
|
+
"import": "./dist/components/preview/index.js",
|
|
63
|
+
"require": "./dist/umd/index.umd.cjs"
|
|
64
|
+
},
|
|
65
|
+
"./skeleton": {
|
|
66
|
+
"types": "./dist/components/skeleton/index.d.ts",
|
|
67
|
+
"import": "./dist/components/skeleton/index.js",
|
|
68
|
+
"require": "./dist/umd/index.umd.cjs"
|
|
69
|
+
},
|
|
70
|
+
"./tab": {
|
|
71
|
+
"types": "./dist/components/tab/index.d.ts",
|
|
72
|
+
"import": "./dist/components/tab/index.js",
|
|
73
|
+
"require": "./dist/umd/index.umd.cjs"
|
|
74
|
+
}
|
|
75
|
+
},
|
|
41
76
|
"devDependencies": {
|
|
42
77
|
"@babel/core": "^7.20.5",
|
|
43
78
|
"@babel/preset-env": "^7.22.7",
|
package/readme.md
CHANGED
|
@@ -7,7 +7,7 @@ UI Component library based on `Web Component`
|
|
|
7
7
|
<a href="https://github.com/chaxus/ran"><img src="https://img.shields.io/github/actions/workflow/status/chaxus/ran/ci.yml" alt="Build Status"></a>
|
|
8
8
|
<a href="https://github.com/chaxus/ran"><img src="https://img.shields.io/npm/v/ranui.svg" alt="npm-v"></a>
|
|
9
9
|
<a href="https://github.com/chaxus/ran"><img src="https://img.shields.io/npm/dt/ranui.svg" alt="npm-d"></a>
|
|
10
|
-
<a href="https://github.com/chaxus/ran"><img src="https://img.badgesize.io/https:/unpkg.com/ranui/dist/index.umd.cjs?label=brotli&compression=brotli" alt="brotli"></a>
|
|
10
|
+
<a href="https://github.com/chaxus/ran"><img src="https://img.badgesize.io/https:/unpkg.com/ranui/dist/umd/index.umd.cjs?label=brotli&compression=brotli" alt="brotli"></a>
|
|
11
11
|
<a href="https://github.com/chaxus/ran"><img src="https://img.shields.io/badge/module%20formats-umd%2C%20esm-green.svg" alt="module formats: umd, esm"></a>
|
|
12
12
|
|
|
13
13
|
## Feature
|
/package/dist/{index → index.js}
RENAMED
|
File without changes
|