-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.11 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
{
"name": "drizzle-zero",
"version": "0.0.3",
"description": "Generate Zero schemas from Drizzle ORM schemas",
"type": "module",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"test:types": "cd tests && tsc --noEmit",
"test": "vitest run --typecheck"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/BriefHQ/drizzle-zero.git"
},
"keywords": [
"zero",
"sync",
"schema",
"drizzle",
"orm",
"pg",
"postgresql",
"postgres",
"database",
"typescript",
"ts"
],
"author": "Brief",
"license": "Apache-2.0",
"peerDependencies": {
"@rocicorp/zero": ">=0.8.2024121204",
"drizzle-orm": ">=0.36.0"
},
"devDependencies": {
"@types/node": "^22.10.2",
"prettier": "^3.4.2",
"tsup": "^8.0.2",
"typescript": "^5.7.2",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.8",
"zod": "^3.20.2"
}
}