-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.64 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
{
"name": "@smooai/clickhouse-kit",
"version": "0.2.0",
"description": "TS-only schema-as-code toolkit for ClickHouse — declarative schemas, Zod schema emitters, forward-only migrations, and drift detection.",
"keywords": [
"clickhouse",
"ddl",
"migrations",
"olap",
"schema",
"typescript",
"zod"
],
"homepage": "https://github.com/SmooAI/clickhouse-kit#readme",
"bugs": {
"url": "https://github.com/SmooAI/clickhouse-kit/issues"
},
"license": "MIT",
"author": {
"name": "SmooAI",
"email": "brent@smooai.com",
"url": "https://smooai.com"
},
"repository": {
"type": "git",
"url": "https://github.com/SmooAI/clickhouse-kit.git"
},
"files": [
"dist/**"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "tsup",
"check-all": "pnpm run typecheck && pnpm run lint && pnpm run test && pnpm run build",
"ci:publish": "pnpm build && pnpm changeset publish",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"lint": "oxlint src",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@changesets/cli": "^2.28.1",
"@types/node": "^22.13.10",
"oxfmt": "^0.28.0",
"oxlint": "^0.16.0",
"tsup": "^8.4.0",
"typescript": "^5.7.3",
"vitest": "^3.1.1",
"zod": "^4.0.0"
},
"peerDependencies": {
"zod": "^4.0.0"
},
"packageManager": "pnpm@10.6.1"
}