-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 2.82 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 2.82 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
{
"name": "drizzle-zero",
"version": "0.17.0",
"description": "Generate Zero schemas from Drizzle ORM schemas",
"type": "module",
"scripts": {
"clean": "rm -rf dist node_modules coverage && cd integration && rm -rf node_modules && cd ../no-config-integration && rm -rf node_modules && cd ../db && rm -rf node_modules",
"build": "rm -rf dist && tsx build.ts && chmod +x dist/cli/index.js",
"release": "pnpm run build && pnpm publish",
"format": "prettier --write .",
"check-format": "prettier --check .",
"check-types": "tsc",
"lint": "oxlint --type-aware --quiet",
"test": "vitest run --typecheck --coverage",
"test:ui": "vitest --ui"
},
"bin": {
"drizzle-zero": "./dist/cli/index.js"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rocicorp/drizzle-zero.git"
},
"keywords": [
"zero",
"sync",
"local-first",
"schema",
"drizzle",
"orm",
"pg",
"postgresql",
"postgres",
"database",
"typescript",
"ts"
],
"bugs": {
"url": "https://bugs.rocicorp.dev"
},
"peerDependencies": {
"@rocicorp/zero": "",
"@types/pg": "",
"drizzle-orm": ">=0.36.0",
"pg": "",
"postgres": "",
"prettier": ">=3.0.0"
},
"peerDependenciesMeta": {
"pg": {
"optional": true
},
"prettier": {
"optional": true
},
"@types/pg": {
"optional": true
},
"postgres": {
"optional": true
}
},
"dependencies": {
"camelcase": "^9.0.0",
"commander": "^14.0.1",
"jsonc-parser": "^3.3.1",
"pluralize": "^8.0.0",
"ts-morph": "^27.0.2"
},
"devDependencies": {
"@rocicorp/prettier-config": "^0.4.0",
"@rocicorp/zero": "0.25.2",
"@ts-morph/common": "^0.28.1",
"@types/node": "^24.10.1",
"@types/pg": "^8.15.6",
"@types/pluralize": "^0.0.33",
"@types/ws": "^8.18.1",
"@vitest/browser": "^4.0.15",
"@vitest/coverage-v8": "4.0.15",
"@vitest/ui": "^4.0.15",
"drizzle-kit": "^0.31.8",
"drizzle-orm": "^0.45.0",
"oxlint": "^1.31.0",
"oxlint-tsgolint": "^0.8.3",
"prettier": "^3.7.4",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^4.0.15",
"ws": "^8.18.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"@rocicorp/zero-sqlite3",
"cpu-features",
"esbuild",
"msw",
"protobufjs",
"ssh2"
]
},
"packageManager": "pnpm@10.18.3",
"prettier": "@rocicorp/prettier-config"
}