-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.49 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
{
"name": "react-formkit",
"version": "0.2.0",
"scripts": {
"dev": "vite dev/",
"format": "prettier --write \"src/**/*.{ts,tsx,scss}\"",
"lint": "eslint src --ext .ts,.tsx",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"build": "vite build"
},
"dependencies": {
"@hookform/resolvers": "^5.0.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-hook-form": "^7.58.0",
"react-phone-input-2": "^2.15.1",
"react-select": "^5.10.2",
"zod": "^3.25.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.0",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"jsdom": "^29.1.1",
"prettier": "^3.3.2",
"sass": "^1.77.6",
"typescript": "^5.8.0",
"vite": "^6.3.0",
"vitest": "^4.1.8"
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"sideEffects": [
"**/*.scss",
"**/*.css"
],
"license": "MIT",
"description": "React + TypeScript form component library built on React Hook Form and Zod"
}