-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.54 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.54 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
{
"name": "conformal",
"version": "2.1.2",
"description": "Type-safe form submissions for the modern web.",
"keywords": [
"formdata",
"submission",
"schema",
"typescript"
],
"type": "module",
"sideEffects": false,
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./valibot": "./dist/valibot/index.js",
"./zod": "./dist/zod/index.js"
},
"scripts": {
"build": "tsc",
"changeset": "changeset",
"format:check": "prettier . --check",
"format:write": "prettier . --write",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"version": "npm run build && changeset version && npm i"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcomuser/conformal.git"
},
"author": "Marco Muser",
"license": "MIT",
"bugs": {
"url": "https://github.com/marcomuser/conformal/issues"
},
"homepage": "https://github.com/marcomuser/conformal#readme",
"devDependencies": {
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.7",
"prettier": "^3.6.2",
"typescript": "^5.9.2",
"valibot": "^1.1.0",
"vitest": "^3.2.4",
"zod": "^4.1.11"
},
"peerDependencies": {
"valibot": "^1.0.0",
"zod": "^4.0.0"
},
"peerDependenciesMeta": {
"valibot": {
"optional": true
},
"zod": {
"optional": true
}
},
"dependencies": {
"@standard-schema/spec": "^1.0.0",
"type-fest": "^5.0.1"
}
}