-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 728 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 728 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
{
"name": "@presidenttree94/form-utils",
"version": "1.0.9",
"keywords": [
"forms",
"form-utilities",
"html-forms",
"schema",
"typescript"
],
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist",
"LICENSE",
"README.md"
],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"react": ">=18 <20",
"react-dom": ">=18 <20"
},
"devDependencies": {
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"typescript": "^5.0.0"
},
"scripts": {
"build": "tsc"
}
}