-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 2.89 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 2.89 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "ventyd",
"version": "1.18.1",
"repository": {
"type": "git",
"url": "https://github.com/daangn/ventyd.git"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./standard": {
"types": "./dist/standard.d.mts",
"import": "./dist/standard.mjs",
"require": "./dist/standard.cjs"
},
"./valibot": {
"types": "./dist/valibot.d.mts",
"import": "./dist/valibot.mjs",
"require": "./dist/valibot.cjs"
},
"./typebox": {
"types": "./dist/typebox.d.mts",
"import": "./dist/typebox.mjs",
"require": "./dist/typebox.cjs"
},
"./typebox0": {
"types": "./dist/typebox0.d.mts",
"import": "./dist/typebox0.mjs",
"require": "./dist/typebox0.cjs"
},
"./zod": {
"types": "./dist/zod.d.mts",
"import": "./dist/zod.mjs",
"require": "./dist/zod.cjs"
},
"./arktype": {
"types": "./dist/arktype.d.mts",
"import": "./dist/arktype.mjs",
"require": "./dist/arktype.cjs"
},
"./adapter/prisma": {
"types": "./dist/adapter/prisma.d.mts",
"import": "./dist/adapter/prisma.mjs",
"require": "./dist/adapter/prisma.cjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"logo-light.png",
"logo-dark.png",
"dist"
],
"workspaces": [
".",
"./docs"
],
"scripts": {
"build": "tsdown",
"format": "biome check --write --unsafe .",
"release": "changeset publish",
"test": "vitest run ./test",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@standard-schema/spec": "^1.1.0",
"just-sort-by": "^3.2.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.4",
"@changesets/cli": "^2.29.8",
"@sinclair/typebox": "^0.34.48",
"@sinclair/typemap": "^0.10.1",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^24.11.0",
"@vitest/coverage-v8": "4.0.18",
"arktype": "^2.1.29",
"better-sqlite3": "^12.6.2",
"mongodb": "^6.21.0",
"mongodb-memory-server": "^10.4.3",
"tsdown": "0.20.1",
"typebox": "^1.1.5",
"typescript": "^5.9.3",
"valibot": "^1.2.0",
"vitest": "^4.0.18",
"zod": "^3.25.76"
},
"peerDependencies": {
"@sinclair/typebox": "^0.34.41",
"@sinclair/typemap": "^0.10.1",
"arktype": "^2",
"typebox": "^1",
"valibot": "^1",
"zod": "^3"
},
"peerDependenciesMeta": {
"@sinclair/typebox": {
"optional": true
},
"@sinclair/typemap": {
"optional": true
},
"arktype": {
"optional": true
},
"typebox": {
"optional": true
},
"valibot": {
"optional": true
},
"zod": {
"optional": true
}
},
"publishConfig": {
"access": "public",
"provenance": true
}
}