-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1 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
{
"name": "@data-driven-forms/common",
"version": "4.1.14",
"description": "Common components, helpers and other pieces of code for Data Driven Forms",
"license": "Apache-2.0",
"main": "index.js",
"module": "esm/index.js",
"scripts": {
"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/common"
},
"devDependencies": {},
"dependencies": {
"@data-driven-forms/react-form-renderer": "^4.1.10",
"clsx": "^1.0.4",
"lodash": "^4.18.1"
},
"peerDependencies": {
"react": "^17.0.2 || ^18.0.0 || ^19.0.0",
"react-dom": "^17.0.2 || ^18.0.0 || ^19.0.0"
}
}