Files
smartclickhouse/package.json

80 lines
2.2 KiB
JSON
Raw Permalink Normal View History

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,
"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": {
"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",
"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": {
"@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": {
"@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",
"query builder",
"CRUD",
2024-04-14 17:25:03 +02:00
"analytics",
"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",
"observables",
"streaming"
2024-05-29 14:12:12 +02: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
}