-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.08 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
52
53
{
"name": "surrealdb-zod",
"version": "1.1.2",
"description": "Re-useable zod schema's for use with SurrealDB sdk",
"license": "MIT",
"author": {
"email": "[email protected]",
"name": "Levy van der Valk"
},
"keywords": [
"surrealdb",
"javascript",
"typescript",
"schema",
"validation",
"type"
],
"type": "module",
"files": [
"dist"
],
"main": "dist/surrealdbZod.umd.js",
"module": "dist/surrealdbZod.js",
"types": "dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/surrealdbZod.js",
"require": "./dist/surrealdbZod.umd.js"
},
"repository": {
"type": "git",
"url": "https://github.com/ShadowWolf308/surrealdb-zod"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build && tsup ./lib/index.ts --dts --dts-only",
"preview": "vite preview",
"production": "pnpm build && pnpm publish"
},
"peerDependencies": {
"surrealdb": "^1.0.6",
"zod": "^3.23.8"
},
"dependencies": {
"surrealdb": "^1.0.6",
"zod": "^3.23.8"
},
"devDependencies": {
"tsup": "^6.5.0",
"typescript": "^5.4.5",
"vite": "^5.2.12"
}
}