-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.52 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@simomosi/dynamic-forms",
"version": "3.0.0",
"description": "DynamicForms is a js library that handles all interactions in forms with dynamic content (e.g. select with variable options, updating rules and visibility changes depending on fields' state).",
"main": "dist/dynamic-forms.umd.js",
"browser": "dist/dynamic-forms.umd.js",
"module": "dist/dynamic-forms.es.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"author": "simomosi (https://github.com/simomosi)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/simomosi/dynamic-forms.git"
},
"homepage": "https://simomosi.github.io/dynamic-forms/",
"bugs": "https://github.com/simomosi/dynamic-forms/issues",
"keywords": [
"form",
"dynamic",
"update",
"rule",
"visibility",
"select",
"option",
"dropdown",
"async",
"promise",
"declarative",
"json",
"configuration",
"vanilla",
"javascript",
"progressive",
"filtering",
"typescript",
"vite",
"esm"
],
"devDependencies": {
"@mermaid-js/mermaid-cli": "^10.1.0",
"mermaid": "^10.1.0",
"rollup-plugin-visualizer": "^6.0.1",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vite-plugin-banner": "^0.8.1",
"vite-plugin-dts": "^4.5.4"
},
"scripts": {
"dev": "vite",
"build": "vite build"
},
"sideEffects": false,
"exports": {
".": {
"import": "./dist/dynamic-forms.es.js",
"require": "./dist/dynamic-forms.umd.js"
}
}
}