-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.65 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.65 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@iamjohndev19/formcraft",
"version": "1.0.1",
"description": "A fully accessible, schema-validated, production-ready form component library for React & Next.js",
"author": "FormCraft (iamjohndev19)",
"license": "MIT",
"keywords": [
"react",
"nextjs",
"forms",
"form-validation",
"accessible-forms",
"zod",
"react-hook-form",
"ui-library",
"components",
"formcraft"
],
"homepage": "https://formcraft-official.vercel.app/",
"repository": {
"type": "git",
"url": "https://github.com/JohnDev19/FormCraft.git"
},
"bugs": {
"url": "https://github.com/JohnDev19/FormCraft/issues"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./styles": "./dist/styles.css"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"build:watch": "tsup --watch",
"dev": "tsup --watch",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"type-check": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"format": "prettier --write .",
"prepublishOnly": "pnpm build && pnpm test",
"release": "changeset publish",
"clean": "rm -rf dist"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0",
"zod": ">=3.0.0"
},
"peerDependenciesMeta": {
"zod": {
"optional": true
}
},
"dependencies": {
"@hookform/resolvers": "^3.3.4",
"clsx": "^2.1.0",
"react-hook-form": "^7.51.0",
"tailwind-merge": "^2.2.1"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.2",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^20.11.5",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.17",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jsdom": "^24.0.0",
"postcss": "^8.4.33",
"prettier": "^3.2.4",
"tailwindcss": "^3.4.1",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vitest": "^1.2.2",
"zod": "^3.22.4"
},
"sideEffects": [
"./dist/styles.css"
]
}