-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 927 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 927 Bytes
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
{
"name": "@kaliber/forms",
"version": "3.0.0",
"main": "index.js",
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"keywords": [
"react",
"forms",
"form",
"hooks",
"hook"
],
"files": [
"index.js",
"validation.js",
"components.js",
"src/**",
"LICENSE",
"readme.md",
"package.json"
],
"private": false,
"license": "MIT",
"repository": "https://github.com/kaliberjs/forms.git",
"scripts": {
"postinstall": "if test -f ./scripts/install-peer-dependencies-for-typescript.js; then node ./scripts/install-peer-dependencies-for-typescript.js; fi",
"test.types": "tsc --project tsconfig.type.test.json"
},
"dependencies": {
"react-fast-compare": "^3.0.1"
},
"peerDependencies": {
"@types/react": "^18.0.0",
"react": "^18.3.1"
},
"devDependencies": {
"@types/node": "22",
"typescript": "^5.8.2"
}
}