80 lines
2.2 KiB
JSON
80 lines
2.2 KiB
JSON
{
|
|
"name": "@push.rocks/smartclickhouse",
|
|
"version": "2.2.0",
|
|
"private": false,
|
|
"description": "A TypeScript-based ODM for ClickHouse databases with full CRUD support, fluent query builder, configurable engines, and automatic schema evolution.",
|
|
"main": "dist_ts/index.js",
|
|
"typings": "dist_ts/index.d.ts",
|
|
"type": "module",
|
|
"author": "Lossless GmbH",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"test": "(tstest test/ --verbose --logfile --timeout 60)",
|
|
"build": "(tsbuild --web --allowimplicitany)",
|
|
"createGrafana": "docker run --name grafana -d -p 4000:3000 grafana/grafana-oss",
|
|
"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",
|
|
"buildDocs": "tsdoc"
|
|
},
|
|
"devDependencies": {
|
|
"@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"
|
|
},
|
|
"dependencies": {
|
|
"@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"
|
|
},
|
|
"browserslist": [
|
|
"last 1 chrome versions"
|
|
],
|
|
"files": [
|
|
"ts/**/*",
|
|
"ts_web/**/*",
|
|
"dist/**/*",
|
|
"dist_*/**/*",
|
|
"dist_ts/**/*",
|
|
"dist_ts_web/**/*",
|
|
"assets/**/*",
|
|
"cli.js",
|
|
"npmextra.json",
|
|
"readme.md"
|
|
],
|
|
"keywords": [
|
|
"ClickHouse",
|
|
"ODM",
|
|
"database",
|
|
"TypeScript",
|
|
"query builder",
|
|
"CRUD",
|
|
"analytics",
|
|
"time-series",
|
|
"schema evolution",
|
|
"MergeTree",
|
|
"ReplacingMergeTree",
|
|
"fluent API",
|
|
"builder pattern",
|
|
"data management",
|
|
"bulk insertion",
|
|
"real-time data",
|
|
"observables",
|
|
"streaming"
|
|
],
|
|
"pnpm": {
|
|
"patchedDependencies": {
|
|
"agentkeepalive@4.5.0": "patches/agentkeepalive@4.5.0.patch"
|
|
}
|
|
},
|
|
"homepage": "https://code.foss.global/push.rocks/smartclickhouse",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://code.foss.global/push.rocks/smartclickhouse.git"
|
|
}
|
|
}
|