@gopowerteam/form-render 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/dist/index.cjs ADDED
@@ -0,0 +1 @@
1
+ "use strict";const r=require("vue"),n=r.defineComponent({props:{},setup(e){},render(e){return()=>React.createElement("div",null,"123")}}),t={FormRender:n};module.exports=t;
@@ -0,0 +1,4 @@
1
+ declare const _default: {
2
+ FormRender: any;
3
+ };
4
+ export default _default;
package/dist/index.js ADDED
@@ -0,0 +1,14 @@
1
+ import { defineComponent as r } from "vue";
2
+ const n = r({
3
+ props: {},
4
+ setup(e) {
5
+ },
6
+ render(e) {
7
+ return () => /* @__PURE__ */ React.createElement("div", null, "123");
8
+ }
9
+ }), t = {
10
+ FormRender: n
11
+ };
12
+ export {
13
+ t as default
14
+ };
package/package.json ADDED
@@ -0,0 +1,65 @@
1
+ {
2
+ "name": "@gopowerteam/form-render",
3
+ "type": "module",
4
+ "version": "0.0.1",
5
+ "author": {
6
+ "name": "zhuchentong",
7
+ "email": "2037630@gmail.com"
8
+ },
9
+ "license": "MIT",
10
+ "homepage": "https://github.com/gopowerteam/x-render",
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "git+https://github.com/gopowerteam/x-render.git"
14
+ },
15
+ "bugs": {
16
+ "url": "https://github.com/gopowerteam/x-render/issues"
17
+ },
18
+ "exports": {
19
+ ".": {
20
+ "require": "./dist/index.cjs",
21
+ "import": {
22
+ "types": "./dist/index.d.ts",
23
+ "default": "./dist/index.js"
24
+ }
25
+ },
26
+ "./dist/": "./dist/"
27
+ },
28
+ "main": "./dist/index.cjs",
29
+ "module": "./dist/index.js",
30
+ "types": "./dist/index.d.ts",
31
+ "files": [
32
+ "dist",
33
+ "README.md"
34
+ ],
35
+ "peerDependencies": {
36
+ "vue": "^3.0.0",
37
+ "@arco-design/web-vue": "^2.52.1"
38
+ },
39
+ "devDependencies": {
40
+ "@arco-design/web-vue": "^2.52.1",
41
+ "@iconify-json/icon-park-outline": "^1.1.12",
42
+ "@types/node": "18.16.0",
43
+ "@unocss/preset-icons": "^0.57.1",
44
+ "@unocss/preset-uno": "^0.57.1",
45
+ "@vitejs/plugin-vue": "4.4.0",
46
+ "@vue/compiler-sfc": "3.3.7",
47
+ "@vueuse/core": "^10.5.0",
48
+ "less": "^4.2.0",
49
+ "typescript": "5.2.2",
50
+ "unocss": "^0.57.1",
51
+ "vite": "4.5.0",
52
+ "vite-plugin-dts": "^3.6.1",
53
+ "vue": "3.3.7",
54
+ "vue-tsc": "1.8.21"
55
+ },
56
+ "publishConfig": {
57
+ "registry": "https://registry.npmjs.org",
58
+ "access": "public"
59
+ },
60
+ "scripts": {
61
+ "dev": "vite build --watch",
62
+ "build": "vite build",
63
+ "npm:publish": "npm run build && npm publish --access publish"
64
+ }
65
+ }