-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.66 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
{
"name": "@itiana/form-architect",
"version": "0.1.0",
"description": "Multi-step form wizard library with conditional fields, async validation, and React Hook Form integration",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src __tests__"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-hook-form": "^7.0.0"
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^9.39.4",
"eslint-plugin-react-hooks": "^7.0.1",
"jsdom": "^24.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.5.3",
"vite": "^5.3.4",
"vite-plugin-dts": "^3.9.1",
"vitest": "^2.0.4"
},
"keywords": [
"form",
"wizard",
"multi-step",
"react-hook-form",
"conditional",
"validation",
"react",
"typescript"
],
"author": "itiana",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tiana-code/form-architect.git"
}
}