2022-03-01 14:03:55 +00:00
{
2023-07-10 00:42:44 +00:00
"name" : "@push.rocks/smartclickhouse" ,
2022-08-05 11:31:11 +00:00
"version" : "2.0.14" ,
2022-03-01 14:03:55 +00:00
"private" : false ,
2024-04-14 15:25:03 +00:00
"description" : "A TypeScript-based ODM (Object-Document Mapper) for ClickHouse databases, with support for creating and managing tables and their 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" : {
2022-08-05 10:33:29 +00:00
"@gitzone/tsbuild" : "^2.1.65" ,
"@gitzone/tsbundle" : "^2.0.7" ,
"@gitzone/tstest" : "^1.0.73" ,
2022-07-27 06:29:59 +00:00
"@pushrocks/tapbundle" : "^5.0.4" ,
2022-08-05 10:33:29 +00:00
"@types/node" : "^18.6.4" ,
2022-03-01 14:03:55 +00:00
"tslint" : "^6.1.3" ,
"tslint-config-prettier" : "^1.15.0"
} ,
"dependencies" : {
2022-07-27 20:42:08 +00:00
"@pushrocks/smartdelay" : "^2.0.13" ,
2022-07-27 06:29:59 +00:00
"@pushrocks/smartobject" : "^1.0.10" ,
2022-07-27 20:42:08 +00:00
"@pushrocks/smartpromise" : "^3.1.7" ,
2022-07-28 14:53:07 +00:00
"@pushrocks/smarturl" : "^3.0.2" ,
2022-08-05 10:33:29 +00:00
"@pushrocks/webrequest" : "^3.0.12"
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" ,
"data storage"
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"
}
2023-07-10 00:42:44 +00:00
}