-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.61 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.61 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
{
"name": "rhf-devtools",
"version": "1.0.7",
"main": "./dist/index.js",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"style": "./dist/styles.css",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.esm.js",
"require": "./dist/index.js",
"react-server": "./dist/index.react-server.js"
},
"./styles.css": "./dist/styles.css"
},
"files": [
"dist"
],
"author": "Pouria <PouriyaxAmini@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/Pourianof/rhf-devtools"
},
"license": "MIT",
"scripts": {
"dev": "vite test/ui-form --port 3001",
"test:build": "vite test/build-test --port 3001",
"build": "npm run build:js",
"build:js": "vite build",
"build:css": "npx @tailwindcss/cli -i ./src/styles/index.css -o ./dist/styles.css --minify",
"prepublishOnly": "npm run build",
"type-check": "tsc --noEmit"
},
"peerDependencies": {
"react": ">=17",
"react-dom": ">=17",
"react-hook-form": "^7.33.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.2.4",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@vitejs/plugin-react": "^4.0.0",
"autoprefixer": "^10.4.0",
"postcss": "^8.4.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-hook-form": "^7.0.0",
"react-icons": "^5.0.0",
"tailwindcss": "^4.2.4",
"terser": "^5.0.0",
"typescript": "^5.0.0",
"vite": "^5.0.0",
"vite-plugin-dts": "^3.0.0"
},
"dependencies": {
"@pourianof/cobjs": "^1.0.4",
"@pourianof/notifier": "^1.2.2"
}
}