-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.61 KB
/
package.json
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
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "formly-react",
"private": false,
"version": "0.0.2",
"type": "module",
"author": "Kamal Sahmoud",
"contributors": [
"Kamal Sahmoud"
],
"repository": {
"type": "git",
"url": "https://github.com/dyaliCode/formly-react"
},
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"watch": "vite build --watch"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^5.3.5"
},
"devDependencies": {
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/styled-components": "^5.1.25",
"@vitejs/plugin-react": "^2.0.0",
"typescript": "^4.6.4",
"vite": "^3.0.0",
"vite-plugin-dts": "^1.4.1"
},
"files": [
"dist"
],
"main": "./dist/formly-react.umd.js",
"module": "./dist/formly-react.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/formly-react.es.js",
"require": "./dist/formly-react.umd.js"
}
},
"keywords": [
"react",
"reactjs",
"react-v3",
"react-framework",
"formly-react",
"react-form",
"react-forms",
"react-form-validations",
"react-form-validation",
"react-form-validators",
"react-form-validator",
"formly-react-validations",
"formly-react-validation",
"formly-react-validators",
"formly-react-validator",
"react-validations",
"react-validation",
"react-validators",
"react-validator",
"form",
"forms",
"formly",
"validations",
"validation",
"validators",
"validator"
]
}