-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.11 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.11 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "feather-form",
"version": "1.0.2",
"author": {
"name": "Utkarsh Mishra",
"email": "utkarshmishra2001@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Lordhacker756/formx"
},
"bugs": {
"url": "https://feather-form.vercel.app/"
},
"url": "https://feather-form.vercel.app/",
"main": "dist/index.umd.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.es.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.umd.js"
}
},
"./styles.css": "./dist/styles.css"
},
"keywords": [
"react",
"form",
"validation",
"forms",
"react-forms",
"form-validation",
"typescript",
"tailwind",
"lightweight"
],
"description": "A lightweight and robust form component package with inbuilt validations for React",
"type": "module",
"scripts": {
"lint": "eslint .",
"preview": "vite preview",
"test": "jest",
"prepublishOnly": "pnpm build",
"build": "vite build && pnpm build:css",
"build:css": "tailwindcss -i src/styles/index.css -o dist/styles.css"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"dependencies": {
"react-icons": "^5.4.0",
"clsx": "^2.1.1"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@tsconfig/node20": "^20.1.4",
"@types/node": "^22.10.2",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react-swc": "^3.5.0",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.16",
"eslint": "^9.15.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"globals": "^15.12.0",
"typescript": "~5.6.2",
"typescript-eslint": "^8.15.0",
"vite": "^6.0.1",
"vite-plugin-dts": "^4.4.0"
},
"sideEffects": false,
"publishConfig": {
"access": "public"
}
}