2022-03-01 14:03:55 +00:00
{
2023-07-10 00:42:44 +00:00
"name" : "@push.rocks/smartclickhouse" ,
2024-06-23 11:33:54 +00:00
"version" : "2.0.18" ,
2022-03-01 14:03:55 +00:00
"private" : false ,
2024-06-14 15:02:28 +00:00
"description" : "A TypeScript-based ODM for ClickHouse databases that supports creating, managing, and querying tables with a focus on handling time-series data." ,
2022-03-01 14:03:55 +00:00
"main" : "dist_ts/index.js" ,
"typings" : "dist_ts/index.d.ts" ,
2022-03-14 13:29:23 +00:00
"type" : "module" ,
2022-03-01 14:03:55 +00:00
"author" : "Lossless GmbH" ,
"license" : "MIT" ,
"scripts" : {
"test" : "(tstest test/ --web)" ,
2022-08-05 10:53:19 +00:00
"build" : "(tsbuild --web --allowimplicitany)" ,
2022-03-02 15:44:09 +00:00
"createGrafana" : "docker run --name grafana -d -p 4000:3000 grafana/grafana-oss" ,
2022-08-05 11:31:11 +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 yandex/clickhouse-server" ,
"buildDocs" : "tsdoc"
2022-03-01 14:03:55 +00:00
} ,
"devDependencies" : {
2024-06-14 14:33:00 +00:00
"@git.zone/tsbuild" : "^2.1.66" ,
"@git.zone/tsbundle" : "^2.0.8" ,
"@git.zone/tsrun" : "^1.2.46" ,
"@git.zone/tstest" : "^1.0.77" ,
"@push.rocks/tapbundle" : "^5.0.8" ,
"@types/node" : "^20.14.2" ,
2022-03-01 14:03:55 +00:00
"tslint" : "^6.1.3" ,
2024-06-14 14:33:00 +00:00
"tslint-config-prettier" : "^1.18.0"
2022-03-01 14:03:55 +00:00
} ,
"dependencies" : {
2024-06-14 14:33:00 +00:00
"@push.rocks/smartdelay" : "^3.0.1" ,
"@push.rocks/smartobject" : "^1.0.10" ,
"@push.rocks/smartpromise" : "^4.0.2" ,
"@push.rocks/smartrx" : "^3.0.7" ,
"@push.rocks/smarturl" : "^3.0.6" ,
"@push.rocks/webrequest" : "^3.0.28"
2022-03-01 14:03:55 +00: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 15:25:03 +00:00
] ,
"keywords" : [
"ClickHouse" ,
"ODM" ,
"database" ,
"TypeScript" ,
"Docker" ,
"Grafana" ,
"data management" ,
"table management" ,
"analytics" ,
2024-06-14 14:56:39 +00:00
"data storage" ,
"time-series data" ,
"schema management" ,
2024-06-14 15:02:28 +00:00
"data insertion" ,
"real-time data" ,
"data querying" ,
"bulk data insertion" ,
"error handling" ,
"data deletion" ,
"observables"
2024-05-29 12:12:12 +00:00
] ,
"homepage" : "https://code.foss.global/push.rocks/smartclickhouse" ,
"repository" : {
"type" : "git" ,
"url" : "https://code.foss.global/push.rocks/smartclickhouse.git"
}
2024-06-14 15:02:29 +00:00
}