Commit f06b3dc8d464fbc7dcd54d12c78c32397cd5f7b0
1 parent
b420ea26
基于xrender修改from-render--支持子表的个性化需求
Showing
1 changed file
with
78 additions
and
0 deletions
package.json
0 → 100644
| 1 | +{ | |
| 2 | + "name": "form-render", | |
| 3 | + "version": "v1.8.4-beta.2", | |
| 4 | + "description": "通过 JSON Schema 生成标准 Form,常用于自定义搭建配置界面生成", | |
| 5 | + "repository": { | |
| 6 | + "type": "git", | |
| 7 | + "url": "git@github.com:alibaba/form-render.git" | |
| 8 | + }, | |
| 9 | + "license": "MIT", | |
| 10 | + "contributors": [ | |
| 11 | + { | |
| 12 | + "name": "Tw93", | |
| 13 | + "email": "tw93@qq.com" | |
| 14 | + }, | |
| 15 | + { | |
| 16 | + "name": "mankaiviky", | |
| 17 | + "email": "mankaiviky@163.com" | |
| 18 | + }, | |
| 19 | + { | |
| 20 | + "name": "FateRiddle", | |
| 21 | + "email": "fateriddle@gmail.com" | |
| 22 | + } | |
| 23 | + ], | |
| 24 | + "scripts": { | |
| 25 | + "build": "father-build", | |
| 26 | + "prepare": "npm run build", | |
| 27 | + "postpublish": "git push --tags", | |
| 28 | + "beta": "npm publish --tag beta", | |
| 29 | + "prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"", | |
| 30 | + "test": "umi-test", | |
| 31 | + "test:coverage": "umi-test --coverage" | |
| 32 | + }, | |
| 33 | + "main": "lib/index.js", | |
| 34 | + "module": "es/index.js", | |
| 35 | + "gitHooks": { | |
| 36 | + "pre-commit": "lint-staged" | |
| 37 | + }, | |
| 38 | + "lint-staged": { | |
| 39 | + "*.{js,jsx,less,md,json}": [ | |
| 40 | + "prettier --write" | |
| 41 | + ], | |
| 42 | + "*.ts?(x)": [ | |
| 43 | + "prettier --parser=typescript --write" | |
| 44 | + ] | |
| 45 | + }, | |
| 46 | + "dependencies": { | |
| 47 | + "@ant-design/icons": "^4.0.2", | |
| 48 | + "async-validator": "^3.5.1", | |
| 49 | + "color": "^3.1.2", | |
| 50 | + "lodash-es": "^4.17.21", | |
| 51 | + "moment": "^2.24.0", | |
| 52 | + "nanoid": "^3.1.20", | |
| 53 | + "rc-color-picker": "^1.2.6", | |
| 54 | + "virtualizedtableforantd4": "^1.1.2" | |
| 55 | + }, | |
| 56 | + "peerDependencies": { | |
| 57 | + "antd": "4.x", | |
| 58 | + "react": ">=16.8.0", | |
| 59 | + "react-dom": ">=16.8.0" | |
| 60 | + }, | |
| 61 | + "devDependencies": { | |
| 62 | + "deep-equal": "^2.0.3", | |
| 63 | + "rollup-plugin-copy": "^3.4.0" | |
| 64 | + }, | |
| 65 | + "keywords": [ | |
| 66 | + "Form", | |
| 67 | + "FormRender", | |
| 68 | + "Render", | |
| 69 | + "XRender", | |
| 70 | + "React", | |
| 71 | + "Json Schema", | |
| 72 | + "Ant Design" | |
| 73 | + ], | |
| 74 | + "homepage": "https://x-render.gitee.io/form-render", | |
| 75 | + "bugs": { | |
| 76 | + "url": "https://github.com/alibaba/x-render/issues" | |
| 77 | + } | |
| 78 | +} | ... | ... |