-
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.58 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.58 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": "@booga/vforms",
"version": "0.3.1",
"description": "Schema-driven form primitives. Zod schema as source of truth, react-hook-form wiring, vUi components, accessibility baked in.",
"license": "MIT",
"author": "bvasilenko",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./styles.css": "./dist/styles.css"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup && npm run build:css",
"typecheck": "tsc --noEmit",
"lint": "eslint src tests --ext .ts,.tsx --max-warnings 0",
"test": "vitest run --coverage",
"build:css": "tailwindcss -i ./styles-entry.css -c ./tailwind.config.js -o ./dist/styles.css --minify"
},
"dependencies": {
"@booga/vui": "^0.3.0",
"@hookform/resolvers": "^3",
"react-hook-form": "^7",
"zod": "^3"
},
"peerDependencies": {
"react": "^18"
},
"devDependencies": {
"@testing-library/jest-dom": "^6",
"@testing-library/react": "^14",
"@testing-library/user-event": "^14",
"@types/react": "^18",
"@typescript-eslint/eslint-plugin": "^6",
"@typescript-eslint/parser": "^6",
"@vitest/coverage-v8": "^1",
"eslint": "^8",
"eslint-plugin-react": "^7",
"eslint-plugin-react-hooks": "^4",
"jsdom": "^24",
"react": "^18",
"react-dom": "^18",
"tsup": "^8",
"typescript": "^5",
"vitest": "^1",
"tailwindcss": "^3.4.0",
"@booga/vtheme": "^0.2.1"
}
}