2022-03-01 15:03:55 +01:00
{
2023-07-10 02:42:44 +02:00
"name" : "@push.rocks/smartclickhouse" ,
2026-02-27 10:17:32 +00:00
"version" : "2.2.0" ,
2022-03-01 15:03:55 +01:00
"private" : false ,
2026-02-27 10:17:32 +00:00
"description" : "A TypeScript-based ODM for ClickHouse databases with full CRUD support, fluent query builder, configurable engines, and automatic schema evolution." ,
2022-03-01 15:03:55 +01:00
"main" : "dist_ts/index.js" ,
"typings" : "dist_ts/index.d.ts" ,
2022-03-14 14:29:23 +01:00
"type" : "module" ,
2022-03-01 15:03:55 +01:00
"author" : "Lossless GmbH" ,
"license" : "MIT" ,
"scripts" : {
2026-02-27 10:17:32 +00:00
"test" : "(tstest test/ --verbose --logfile --timeout 60)" ,
2022-08-05 12:53:19 +02:00
"build" : "(tsbuild --web --allowimplicitany)" ,
2022-03-02 16:44:09 +01:00
"createGrafana" : "docker run --name grafana -d -p 4000:3000 grafana/grafana-oss" ,
2026-02-27 10:17:32 +00:00
"createClickhouse" : "docker run --name some-clickhouse-server --ulimit nofile=262144:262144 -p 8123:8123 -p 9000:9000 --volume=$PWD/.nogit/testdatabase:/var/lib/clickhouse clickhouse/clickhouse-server" ,
2022-08-05 13:31:11 +02:00
"buildDocs" : "tsdoc"
2022-03-01 15:03:55 +01:00
} ,
"devDependencies" : {
2026-02-27 10:17:32 +00:00
"@git.zone/tsbuild" : "^4.1.2" ,
"@git.zone/tsbundle" : "^2.9.0" ,
"@git.zone/tsrun" : "^2.0.1" ,
"@git.zone/tstest" : "^3.1.8" ,
"@push.rocks/tapbundle" : "^6.0.3" ,
"@types/node" : "^22.15.17"
2022-03-01 15:03:55 +01:00
} ,
"dependencies" : {
2026-02-27 10:17:32 +00:00
"@push.rocks/smartdelay" : "^3.0.5" ,
"@push.rocks/smartobject" : "^1.0.12" ,
"@push.rocks/smartpromise" : "^4.2.3" ,
"@push.rocks/smartrx" : "^3.0.10" ,
"@push.rocks/smarturl" : "^3.1.0" ,
"@push.rocks/webrequest" : "^4.0.2"
2022-03-01 15:03:55 +01:00
} ,
"browserslist" : [
"last 1 chrome versions"
] ,
"files" : [
"ts/**/*" ,
"ts_web/**/*" ,
"dist/**/*" ,
"dist_*/**/*" ,
"dist_ts/**/*" ,
"dist_ts_web/**/*" ,
"assets/**/*" ,
"cli.js" ,
"npmextra.json" ,
"readme.md"
2024-04-14 17:25:03 +02:00
] ,
"keywords" : [
"ClickHouse" ,
"ODM" ,
"database" ,
"TypeScript" ,
2026-02-27 10:17:32 +00:00
"query builder" ,
"CRUD" ,
2024-04-14 17:25:03 +02:00
"analytics" ,
2026-02-27 10:17:32 +00:00
"time-series" ,
"schema evolution" ,
"MergeTree" ,
"ReplacingMergeTree" ,
"fluent API" ,
"builder pattern" ,
"data management" ,
"bulk insertion" ,
2024-06-14 17:02:28 +02:00
"real-time data" ,
2026-02-27 10:17:32 +00:00
"observables" ,
"streaming"
2024-05-29 14:12:12 +02:00
] ,
2026-02-27 10:17:32 +00:00
"pnpm" : {
"patchedDependencies" : {
"agentkeepalive@4.5.0" : "patches/agentkeepalive@4.5.0.patch"
}
} ,
2024-05-29 14:12:12 +02:00
"homepage" : "https://code.foss.global/push.rocks/smartclickhouse" ,
"repository" : {
"type" : "git" ,
"url" : "https://code.foss.global/push.rocks/smartclickhouse.git"
}
2024-06-14 17:02:29 +02:00
}