@schemaform/wc 0.1.0

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/package.json ADDED
@@ -0,0 +1,35 @@
1
+ {
2
+ "name": "@schemaform/wc",
3
+ "version": "0.1.0",
4
+ "description": "Web Component wrappers for Formify — use form designer and renderer in any framework",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "import": "./dist/index.js",
12
+ "types": "./dist/index.d.ts"
13
+ }
14
+ },
15
+ "files": [
16
+ "dist"
17
+ ],
18
+ "scripts": {
19
+ "build": "tsup src/index.ts --format esm --clean --external vue,element-plus,@schemaform/core,@schemaform/vue && vite build",
20
+ "dev": "tsup src/index.ts --format esm --watch --external vue,element-plus,@schemaform/core,@schemaform/vue"
21
+ },
22
+ "dependencies": {
23
+ "@schemaform/core": "workspace:*",
24
+ "@schemaform/vue": "workspace:*",
25
+ "vue": "^3.4",
26
+ "element-plus": "^2.9"
27
+ },
28
+ "keywords": [
29
+ "web-component",
30
+ "custom-element",
31
+ "form-builder",
32
+ "dynamic-form"
33
+ ],
34
+ "license": "MIT"
35
+ }