@vue-mini/core 1.0.0-rc.10
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/LICENSE +21 -0
- package/README.md +9 -0
- package/dist/vue-mini.cjs.js +2454 -0
- package/dist/vue-mini.cjs.prod.js +8 -0
- package/dist/vue-mini.d.ts +107 -0
- package/dist/vue-mini.esm-bundler.js +1118 -0
- package/package.json +29 -0
package/package.json
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@vue-mini/core",
|
|
3
|
+
"version": "1.0.0-rc.10",
|
|
4
|
+
"description": "基于 Vue 3 的小程序框架。简单,强大,高性能。 ",
|
|
5
|
+
"main": "dist/vue-mini.cjs.js",
|
|
6
|
+
"module": "dist/vue-mini.esm-bundler.js",
|
|
7
|
+
"types": "dist/vue-mini.d.ts",
|
|
8
|
+
"repository": "https://github.com/vue-mini/vue-mini.git",
|
|
9
|
+
"homepage": "https://vuemini.org",
|
|
10
|
+
"author": "Yang Mingshan <y.mingshan3@gmail.com>",
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"files": [
|
|
13
|
+
"dist"
|
|
14
|
+
],
|
|
15
|
+
"keywords": [
|
|
16
|
+
"vue",
|
|
17
|
+
"mini",
|
|
18
|
+
"wechat",
|
|
19
|
+
"weixin",
|
|
20
|
+
"miniprogram",
|
|
21
|
+
"mp",
|
|
22
|
+
"微信",
|
|
23
|
+
"小程序"
|
|
24
|
+
],
|
|
25
|
+
"dependencies": {
|
|
26
|
+
"@vue/reactivity": "3.4.27",
|
|
27
|
+
"@vue-mini/miniprogram-api-typings": "3.12.2-patch.1"
|
|
28
|
+
}
|
|
29
|
+
}
|