simple-web-lib 0.0.4 → 0.0.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/README.md +71 -71
- package/lib/components/simple-button/index.d.ts +8 -0
- package/lib/components/simple-button/src/SimpleButton.vue.d.ts +2 -0
- package/lib/components/simple-card/index.d.ts +8 -0
- package/lib/components/simple-card/src/SimpleCard.vue.d.ts +9 -0
- package/lib/index.d.ts +12 -0
- package/lib/locales/index.d.ts +20 -0
- package/lib/simple-web-lib.es.js +1458 -1549
- package/lib/simple-web-lib.umd.js +18 -18
- package/lib/style.css +1 -1
- package/package.json +58 -55
package/package.json
CHANGED
|
@@ -1,55 +1,58 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "simple-web-lib",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "A Simple Web Library with VitePress documentation and i18n support",
|
|
5
|
-
"main": "./lib/simple-web-lib.umd.js",
|
|
6
|
-
"module": "./lib/simple-web-lib.es.js",
|
|
7
|
-
"unpkg": "./lib/simple-web-lib.umd.js",
|
|
8
|
-
"style": "./lib/style.css",
|
|
9
|
-
"type": "module",
|
|
10
|
-
"
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
"
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
"
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"vitepress": "
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
}
|
|
55
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "simple-web-lib",
|
|
3
|
+
"version": "0.0.5",
|
|
4
|
+
"description": "A Simple Web Library with VitePress documentation and i18n support",
|
|
5
|
+
"main": "./lib/simple-web-lib.umd.js",
|
|
6
|
+
"module": "./lib/simple-web-lib.es.js",
|
|
7
|
+
"unpkg": "./lib/simple-web-lib.umd.js",
|
|
8
|
+
"style": "./lib/style.css",
|
|
9
|
+
"type": "module",
|
|
10
|
+
"types": "./lib/index.d.ts",
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"import": "./lib/simple-web-lib.es.js",
|
|
14
|
+
"require": "./lib/simple-web-lib.umd.js"
|
|
15
|
+
},
|
|
16
|
+
"./style.css": "./lib/style.css"
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"lib"
|
|
20
|
+
],
|
|
21
|
+
"scripts": {
|
|
22
|
+
"dev": "vite",
|
|
23
|
+
"build": "vite build",
|
|
24
|
+
"preview": "vite preview",
|
|
25
|
+
"build:types": "vue-tsc --declaration -p tsconfig.declaration.json",
|
|
26
|
+
"lib": "vite build --mode lib",
|
|
27
|
+
"docs:dev": "vitepress dev docs",
|
|
28
|
+
"docs:build": "vitepress build docs",
|
|
29
|
+
"docs:preview": "vitepress serve docs"
|
|
30
|
+
},
|
|
31
|
+
"keywords": [
|
|
32
|
+
"vue",
|
|
33
|
+
"component-library",
|
|
34
|
+
"vitepress",
|
|
35
|
+
"i18n",
|
|
36
|
+
"typescript"
|
|
37
|
+
],
|
|
38
|
+
"author": "Mr.Fang",
|
|
39
|
+
"license": "MIT",
|
|
40
|
+
"peerDependencies": {
|
|
41
|
+
"vue": "3.5.13",
|
|
42
|
+
"vue-i18n": "9.14.0"
|
|
43
|
+
},
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"@vitejs/plugin-vue": "5.0.0",
|
|
46
|
+
"@vitepress-demo-preview/component": "2.3.2",
|
|
47
|
+
"@vitepress-demo-preview/plugin": "1.2.3",
|
|
48
|
+
"typescript": "5.0.2",
|
|
49
|
+
"vite": "5.0.0",
|
|
50
|
+
"vitepress": "1.0.0-rc.4",
|
|
51
|
+
"vue": "3.5.13",
|
|
52
|
+
"vue-i18n": "9.14.0",
|
|
53
|
+
"vue-tsc": "^1.8.0"
|
|
54
|
+
},
|
|
55
|
+
"dependencies": {
|
|
56
|
+
"element-plus": "2.8.0"
|
|
57
|
+
}
|
|
58
|
+
}
|