-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
51 lines (51 loc) · 1.23 KB
/
package.json
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
{
"name": "conform-to-valibot",
"version": "0.0.1",
"description": "Conform helpers for integrating with Valibot",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": ["dist"],
"scripts": {
"build": "tsup",
"check": "npx @biomejs/biome check .",
"check:write": "npx @biomejs/biome check --write .",
"prepack": "npm run build",
"release": "semantic-release",
"test": "vitest",
"typecheck": "tsc"
},
"author": "chimame",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/chimame/conform-to-valibot.git"
},
"bugs": {
"url": "https://github.com/chimame/conform-to-valibot/issues"
},
"keywords": [
"constraint-validation",
"form",
"form-validation",
"html",
"progressive-enhancement",
"validation",
"valibot"
],
"peerDependencies": {
"@conform-to/dom": ">= 1.0.0",
"valibot": ">= 0.32.0"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@conform-to/dom": "^1.0.0",
"@tsconfig/node16": "^16.1.1",
"@types/node": "^20.12.12",
"semantic-release": "^22.0.8",
"tsup": "^8.0.0",
"typescript": "^5.5.4",
"valibot": "^0.34.0",
"vitest": "2.0.5"
}
}