rezor 0.0.0 → 0.0.1
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 +13 -0
- package/dist/index.cjs.js +1208 -0
- package/dist/index.cjs.prod.js +7 -0
- package/dist/index.d.ts +100 -0
- package/dist/index.esm-bundler.js +1174 -0
- package/package.json +33 -8
package/package.json
CHANGED
|
@@ -1,12 +1,37 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rezor",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "",
|
|
5
|
-
"main": "index.js",
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "拥有原生性能的 React 小程序框架。",
|
|
5
|
+
"main": "dist/index.cjs.js",
|
|
6
|
+
"module": "dist/index.esm-bundler.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"repository": "https://github.com/rezorjs/rezor.git",
|
|
9
|
+
"homepage": "https://rezor.dev",
|
|
10
|
+
"author": "Yang Mingshan <y.mingshan3@gmail.com>",
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"files": [
|
|
13
|
+
"dist"
|
|
14
|
+
],
|
|
15
|
+
"exports": {
|
|
16
|
+
".": {
|
|
17
|
+
"types": "./dist/index.d.ts",
|
|
18
|
+
"import": "./dist/index.esm-bundler.js",
|
|
19
|
+
"require": "./dist/index.cjs.js",
|
|
20
|
+
"default": "./dist/index.cjs.js"
|
|
21
|
+
},
|
|
22
|
+
"./package.json": "./package.json"
|
|
23
|
+
},
|
|
24
|
+
"keywords": [
|
|
25
|
+
"react",
|
|
26
|
+
"mini",
|
|
27
|
+
"wechat",
|
|
28
|
+
"weixin",
|
|
29
|
+
"miniprogram",
|
|
30
|
+
"mp",
|
|
31
|
+
"微信",
|
|
32
|
+
"小程序"
|
|
33
|
+
],
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"miniprogram-api-typings": "~5.1.2"
|
|
11
36
|
}
|
|
12
37
|
}
|