@openplait/adapter-clickhouse 0.1.0-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,66 @@
1
+ {
2
+ "name": "@openplait/adapter-clickhouse",
3
+ "version": "0.1.0-alpha.0",
4
+ "description": "ClickHouse datasource adapter for OpenPlait and OpenLIT telemetry schemas.",
5
+ "type": "module",
6
+ "sideEffects": false,
7
+ "files": [
8
+ "dist/src",
9
+ "README.md",
10
+ "LICENSE"
11
+ ],
12
+ "exports": {
13
+ ".": {
14
+ "types": "./dist/src/index.d.ts",
15
+ "import": "./dist/src/index.js"
16
+ }
17
+ },
18
+ "scripts": {
19
+ "build": "tsc -p tsconfig.build.json",
20
+ "prebuild": "npm run build --workspace @openplait/adapter-sdk",
21
+ "prepack": "npm run build",
22
+ "pretest": "npm run build --workspace @openplait/adapter-sdk",
23
+ "test": "vitest run",
24
+ "pretypecheck": "npm run build --workspace @openplait/adapter-sdk",
25
+ "typecheck": "tsc -p tsconfig.json --noEmit"
26
+ },
27
+ "engines": {
28
+ "node": ">=20.19"
29
+ },
30
+ "dependencies": {
31
+ "@clickhouse/client": "^1.23.1",
32
+ "@openplait/adapter-sdk": "0.1.0-alpha.0",
33
+ "@openplait/core": "0.1.0-alpha.0"
34
+ },
35
+ "devDependencies": {
36
+ "typescript": "^5.9.0",
37
+ "vitest": "^3.2.0"
38
+ },
39
+ "license": "Apache-2.0",
40
+ "author": "OpenLIT",
41
+ "homepage": "https://github.com/openlit/openplait#readme",
42
+ "bugs": {
43
+ "url": "https://github.com/openlit/openplait/issues"
44
+ },
45
+ "repository": {
46
+ "type": "git",
47
+ "url": "git+https://github.com/openlit/openplait.git",
48
+ "directory": "typescript/packages/adapter-clickhouse"
49
+ },
50
+ "publishConfig": {
51
+ "access": "public",
52
+ "registry": "https://registry.npmjs.org/"
53
+ },
54
+ "keywords": [
55
+ "openplait",
56
+ "openlit",
57
+ "opentelemetry",
58
+ "observability",
59
+ "datasource",
60
+ "adapter",
61
+ "promql",
62
+ "traceql",
63
+ "logql",
64
+ "adapter clickhouse"
65
+ ]
66
+ }