sard-uniapp 1.0.0 → 1.0.2

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 (2) hide show
  1. package/README.md +37 -0
  2. package/package.json +42 -6
package/README.md ADDED
@@ -0,0 +1,37 @@
1
+ <p align="center">
2
+ <img alt="logo" src="https://fastly.jsdelivr.net/npm/@sard/assets/logo.svg" width="120" height="120" style="margin-bottom: 10px;">
3
+ </p>
4
+
5
+ <h1 align="center">Sard Uniapp</h1>
6
+
7
+ <p align="center">sard-uniapp 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库。</p>
8
+
9
+ <p align="center">
10
+ 📖 <a href="http://sutras.gitee.io/sard-uniapp-docs">文档网站</a>&nbsp;&nbsp;&nbsp;&nbsp;
11
+ 🧑🏻‍🏫 <a href="http://sutras.gitee.io/sard-uniapp-docs/mobile/">案例演示</a>
12
+ </p>
13
+
14
+ ---
15
+
16
+ ## 介绍
17
+
18
+ `sard-uniapp` 是一套基于 `Uniapp` + `Vue3`框架开发的兼容多端的 `UI` 组件库。
19
+
20
+ `sard-uniapp` 兼容 H5 / 小程序 / `APP`(不支持 `nvue` 或 `uvue`)。
21
+
22
+ ## 特性
23
+
24
+ - 🧩 60+个高质量组件,覆盖移动端主流场景
25
+ - 💪 支持一套代码同时开发 H5 / 小程序 / App
26
+ - 🌿 支持按需引入和 `Tree Shaking`
27
+ - 📖 详尽的文档和案例展示
28
+ - ʦ 使用 `TypeScript` 编写,提供完整的类型定义
29
+ - 🌈 支持定制主题
30
+ - 🌍 国际化支持
31
+ - 🌙 支持暗黑模式
32
+ - 🧪 单元测试覆盖率超过 80%,保障稳定性
33
+ - ⭐️ 零外部依赖,不依赖三方 `npm` 包
34
+
35
+ ## 开源协议
36
+
37
+ 本项目基于 <a href="https://zh.wikipedia.org/wiki/MIT%E8%A8%B1%E5%8F%AF%E8%AD%89" target="_blank">MIT</a> 协议,请自由地享受和参与开源。
package/package.json CHANGED
@@ -1,11 +1,47 @@
1
1
  {
2
+ "id": "sard-uniapp",
2
3
  "name": "sard-uniapp",
3
- "version": "1.0.0",
4
- "description": "",
5
- "main": "index.js",
4
+ "displayName": "sard-uniapp",
5
+ "version": "1.0.2",
6
+ "description": "sard-uniapp 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库",
7
+ "keywords": [
8
+ "uniapp",
9
+ "UI",
10
+ "vue3",
11
+ "typescript"
12
+ ],
13
+ "dcloudext": {
14
+ "category": [
15
+ "前端组件",
16
+ "通用组件"
17
+ ],
18
+ "npmurl": "https://www.npmjs.com/package/sard-uniapp"
19
+ },
20
+ "main": "dist/index.js",
21
+ "files": [
22
+ "dist",
23
+ "!.md"
24
+ ],
6
25
  "scripts": {
7
- "test": "echo \"Error: no test specified\" && exit 1"
26
+ "dev": "sard dev",
27
+ "build:site": "sard build:site",
28
+ "preview": "sard preview",
29
+ "build": "sard build",
30
+ "deploy": "sard deploy",
31
+ "release": "sard release",
32
+ "test": "vitest"
33
+ },
34
+ "peerDependencies": {
35
+ "@dcloudio/types": "^3.3.2",
36
+ "vue": "^3.2.45"
37
+ },
38
+ "devDependencies": {
39
+ "region-data": "^1.0.6"
8
40
  },
9
- "author": "",
10
- "license": "ISC"
41
+ "author": "wuzhitao",
42
+ "license": "MIT",
43
+ "repository": "https://github.com/sutras/sard-uniapp",
44
+ "engines": {
45
+ "HBuilderX": "^3.6.0"
46
+ }
11
47
  }