@simpleform/render 1.0.3 → 1.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 CHANGED
@@ -13,7 +13,7 @@ English | [中文说明](./README_CN.md)
13
13
  - Component linkage: All form properties can support string expressions to describe linkage conditions (except `properties`).
14
14
 
15
15
  ## install
16
- - [Node.js](https://nodejs.org/en/) Version >= 18.18.2
16
+ - [Node.js](https://nodejs.org/en/) Version >= 16.0.0
17
17
  - [react](https://nodejs.org/en/) Version >= 16.8.0
18
18
  ```bash
19
19
  npm install @simpleform/render --save
package/README_CN.md CHANGED
@@ -13,7 +13,7 @@
13
13
  - 组件联动:表单属性均可以支持字符串表达式描述联动条件(`properties`除外).
14
14
 
15
15
  ## 安装
16
- - [Node.js](https://nodejs.org/en/) Version >= 18.18.2
16
+ - [Node.js](https://nodejs.org/en/) Version >= 16.0.0
17
17
  - [react](https://nodejs.org/en/) Version >= 16.8.0
18
18
  ```bash
19
19
  npm install @simpleform/render --save
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simpleform/render",
3
- "version": "1.0.3",
3
+ "version": "1.0.5",
4
4
  "description": "dynamic rendering core of simple form",
5
5
  "author": "mezhanglei <496623925@qq.com>",
6
6
  "homepage": "https://github.com/mezhanglei/simpleform#readme",
@@ -8,6 +8,9 @@
8
8
  "main": "lib/index.js",
9
9
  "module": "es/index.js",
10
10
  "types": "./lib/index.d.ts",
11
+ "engines": {
12
+ "node": ">=14.0.0"
13
+ },
11
14
  "directories": {
12
15
  "lib": "lib",
13
16
  "src": "src",
@@ -24,9 +27,7 @@
24
27
  },
25
28
  "publishConfig": {
26
29
  "access": "public",
27
- "registry": "https://registry.npmjs.org/",
28
- "node-version": ">14.0.0",
29
- "npm-version": ">6.0.0"
30
+ "registry": "https://registry.npmjs.org/"
30
31
  },
31
32
  "scripts": {
32
33
  "build": "cross-env NODE_ENV=prod webpack --progress --config ./webpack/webpack.prod.js && tsc -d",