-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.7 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
{
"name": "nextjs-forms",
"version": "1.0.11",
"main": "index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"dist/index.css"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ninsau/nextjs-forms.git"
},
"bugs": {
"url": "https://github.com/ninsau/nextjs-forms/issues"
},
"homepage": "https://github.com/ninsau/nextjs-forms#readme",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsup src/index.ts --format esm,cjs --dts && npm run build:css",
"build:css": "npx tailwindcss -i src/styles/formStyles.css -o dist/index.css --minify"
},
"author": "ninsau",
"license": "ISC",
"description": "A flexible and customizable form builder for Next.js and React, featuring Formik and Yup validation.",
"dependencies": {
"@types/yup": "^0.29.14",
"formik": "^2.2.9",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-quill": "^2.0.0",
"react-select": "^5.2.0",
"yup": "^1.4.0"
},
"devDependencies": {
"@types/react": "^18.3.9",
"@types/react-dom": "^18.3.0",
"tailwindcss": "^3.4.13",
"tsup": "^8.3.0",
"typescript": "^5.6.2"
},
"peerDependencies": {
"formik": "^2.2.9",
"next": ">=11 <=14",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"keywords": [
"nextjs",
"react",
"form builder",
"formik",
"yup",
"react-quill",
"react-select",
"typescript",
"form component",
"ui component",
"validation",
"file upload",
"tailwindcss",
"nextjs-forms",
"npm package",
"open source"
]
}