-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.86 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.86 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
68
69
70
71
{
"name": "mayoiga",
"version": "0.1.8",
"description": "Type safe hook based form library for React",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"/component.js",
"/component.d.ts",
"!*.test.js"
],
"scripts": {
"clean": "rm -rf dist",
"test": "vitest run",
"prebuild": "npm run clean",
"build": "tsc",
"check:type": "tsc --noEmit",
"check:lint": "biome lint src/",
"check:style": "biome format src/",
"check-all": "npm run check:type && npm run check:style && npm run check:lint && npm run build --noEmit && npm run test",
"fix:lint": "biome lint src/ --fix",
"fix-all": "npm run check:style -- --write && npm run check:lint -- --fix",
"prepublish": "npm run check-all && npm run build"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/hachibeeDI/mayoiga.git"
},
"keywords": [
"react",
"react-dom",
"forms",
"validation",
"state"
],
"author": "OGURA Daiki",
"license": "MIT",
"bugs": {
"url": "https://github.com/hachibeeDI/mayoiga/issues"
},
"homepage": "https://github.com/hachibeeDI/mayoiga#readme",
"peerDependencies": {
"zod": "^3.24.2"
},
"dependencies": {
"nozuchi": "^0.0.13"
},
"resolutions": {
"react": "^19.0.0",
"react-dom": "^19.0.0",
"@types/react": "^19.0.12"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.13.11",
"@types/react": "^19.0.12",
"@types/use-sync-external-store": "^0.0.6",
"jsdom": "^26.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"typedoc": "^0.28.1",
"typescript": "^5.8.2",
"use-sync-external-store": "^1.4.0",
"vitest": "^3.0.9",
"zod": "^3.24.2"
}
}