-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.53 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.53 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
{
"name": "chkit",
"version": "0.1.0",
"description": "ClickHouse schema and migration CLI for TypeScript projects",
"license": "MIT",
"author": "ObsessionDB",
"repository": {
"type": "git",
"url": "https://github.com/obsessiondb/chkit.git"
},
"private": true,
"type": "module",
"packageManager": "bun@1.3.5",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"docs:dev": "bun run --cwd apps/docs dev",
"docs:build": "bun run --cwd apps/docs build",
"typecheck": "turbo run typecheck",
"lint": "turbo run lint",
"test": "turbo run test",
"test:turbo": "turbo run test",
"test:env": "doppler run --project chkit --config ci -- bun run test",
"verify": "doppler run --project chkit --config ci -- turbo run typecheck lint test build",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "bun run ./scripts/manual-release.ts",
"clean": "turbo run clean",
"chkit": "bun run ./packages/cli/src/bin/chkit.ts",
"deploy": "turbo run deploy"
},
"devDependencies": {
"@biomejs/biome": "^2.3.14",
"@changesets/cli": "^2.29.8",
"@chkit/plugin-backfill": "workspace:*",
"@chkit/plugin-obsessiondb": "workspace:*",
"@orpc/client": "1.13.4",
"@orpc/contract": "1.13.4",
"@types/node": "^24.0.0",
"p-map": "^7.0.4",
"turbo": "^2.8.21",
"typescript": "^5.8.0",
"zod": "3.25.76"
},
"dependencies": {
"wrangler": "^4.65.0"
}
}