clicksuite
Version:
A CLI tool for managing ClickHouse database migrations with environment-specific configurations
66 lines (65 loc) • 1.54 kB
JSON
{
"name": "clicksuite",
"version": "1.7.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"clicksuite": "dist/cli.js"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --watchAll=false",
"build": "tsc",
"start": "node dist/cli.js"
},
"keywords": [
"clickhouse",
"migration",
"database",
"cli",
"schema",
"sql",
"migration-tool"
],
"author": "Gamebeast <info@gamebeast.gg>",
"license": "MIT",
"description": "A CLI tool for managing ClickHouse database migrations with environment-specific configurations",
"repository": {
"type": "git",
"url": "git+https://github.com/GamebeastGG/clicksuite.git"
},
"bugs": {
"url": "https://github.com/GamebeastGG/clicksuite/issues"
},
"homepage": "https://github.com/GamebeastGG/clicksuite#readme",
"engines": {
"node": ">=16.0.0"
},
"files": [
"dist/**/*",
"examples/**/*",
"README.md",
"LICENSE"
],
"devDependencies": {
"@types/inquirer": "^9.0.8",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.0.3",
"@types/yargs": "^17.0.33",
"jest": "^30.0.0",
"ts-jest": "^29.4.0",
"typescript": "^5.8.3"
},
"dependencies": {
"@clickhouse/client": "^1.11.2",
"@types/chalk": "^0.4.31",
"chalk": "^4.1.2",
"dotenv": "^16.5.0",
"inquirer": "^12.6.3",
"js-yaml": "^4.1.0",
"yargs": "^17.7.2"
}
}