forked from dockwa/simple-react-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.88 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
{
"name": "@egomaw/react-validator",
"version": "1.4.3",
"description": "A simple react form validator inspired by Laravel validation.",
"author": "Kimon \"EgoMaw\" <[email protected]>",
"bugs": "https://github.com/EgoMaw/simple-react-validator/issues",
"homepage": "https://github.com/EgoMaw/simple-react-validator#readme",
"type": "module",
"types": "dist/index.d.ts",
"main": "dist/umd/simple-react-validator.js",
"module": "dist/esm/simple-react-validator.js",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/esm/simple-react-validator.js",
"require": "./dist/umd/simple-react-validator.js"
},
"./locale/*": {
"import": "./dist/esm/locale/*.js",
"require": "./dist/umd/locale/*.js"
}
},
"scripts": {
"dist": "pnpm rimraf dist/ && pnpm rollup -c --environment BUILD:production",
"dev": "pnpm rollup -c -w --environment BUILD:development"
},
"peerDependencies": {
"react": "16 - 18"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.24.4",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-replace": "^5.0.5",
"esbuild": "^0.20.2",
"glob": "^10.3.12",
"lodash-es": "^4.17.21",
"rimraf": "^5.0.5",
"rollup": "^4.14.3",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-serve": "^3.0.0"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EgoMaw/simple-react-validator.git"
},
"keywords": [
"react",
"validator",
"form",
"form-validator",
"react-validator"
],
"browserslist": [
"defaults"
],
"license": "MIT"
}