-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.3 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.3 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
{
"name": "@data-driven-forms/react-form-renderer",
"version": "4.1.13",
"description": "React Form Renderer. Data Driven Forms converts JSON form definitions into fully functional React forms.",
"main": "index.js",
"module": "esm/index.js",
"license": "Apache-2.0",
"scripts": {
"start": "rspack serve --config ./config/rspack.config.js",
"build": "npm run build:cjs && npm run build:esm && npm run build:packages",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:packages": "node ../../scripts/generate-packages.js"
},
"homepage": "https://data-driven-forms.org/",
"bugs": "https://github.com/data-driven-forms/react-forms/issues",
"repository": {
"type": "git",
"url": "https://github.com/data-driven-forms/react-forms",
"directory": "packages/react-form-renderer"
},
"keywords": [
"react",
"forms",
"javascript"
],
"devDependencies": {
"process": "^0.11.10"
},
"dependencies": {
"final-form": "^4.20.10",
"final-form-arrays": "^3.0.2",
"final-form-focus": "^1.1.2",
"lodash": "^4.18.1",
"react-final-form": "^6.5.0",
"react-final-form-arrays": "^3.1.1"
},
"peerDependencies": {
"react": "^17.0.2 || ^18.0.0 || ^19.0.0",
"react-dom": "^17.0.2 || ^18.0.0 || ^19.0.0"
}
}