-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
47 lines (47 loc) · 1.15 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
{
"name": "orchid-orm-schema-to-zod",
"version": "0.9.25",
"description": "Orchid-ORM columns schema to Zod converter",
"homepage": "https://orchid-orm.netlify.app/guide/columns-validation-methods.html",
"repository": {
"type": "git",
"url": "https://github.com/romeerez/orchid-orm/tree/main/packages/schema-to-zod"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"test": "jest --watch --verbose false",
"check": "jest",
"types": "tsc",
"test:ci": "jest --coverage --coverageReporters json-summary",
"build": "rimraf dist && rollup -c ../../../rollup.config.mjs",
"prepublishOnly": "pnpm build"
},
"keywords": [
"orchid-orm",
"query-builder",
"schema",
"zod"
],
"author": "Roman Kushyn",
"license": "ISC",
"dependencies": {
"orchid-core": "workspace:*",
"pqb": "workspace:*",
"zod": "^3.23.8"
},
"devDependencies": {
"test-utils": "workspace:*"
}
}