@iarayan/ch-orm
Version:
A Developer-First ClickHouse ORM with Powerful CLI Tools
88 lines (87 loc) • 2.3 kB
JSON
{
"name": "@iarayan/ch-orm",
"publishConfig": {
"access": "public"
},
"version": "1.3.6",
"description": "A Developer-First ClickHouse ORM with Powerful CLI Tools",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"bin": {
"chorm": "./bin/chorm"
},
"files": [
"dist/**/*",
"bin/**/*",
"LICENSE"
],
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && npm run build:cjs && npm run build:esm && npm run build:types",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:types": "tsc -p tsconfig.types.json",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"test": "jest --detectOpenHandles",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"docs": "typedoc",
"docs:watch": "typedoc --watch",
"docs:sync": "./scripts/sync-wiki.sh"
},
"keywords": [
"clickhouse",
"orm",
"database",
"typescript",
"migrations",
"cli",
"active-record",
"eloquent"
],
"author": "Islam Adel",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/iarayan/ch-orm.git"
},
"bugs": {
"url": "https://github.com/iarayan/ch-orm/issues"
},
"homepage": "https://github.com/iarayan/ch-orm#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^9.5.0",
"dotenv": "^16.4.7",
"figlet": "^1.8.0",
"ora": "^5.4.1"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.1",
"@types/figlet": "^1.7.0",
"@types/jest": "^29.5.14",
"@types/node": "^18.19.83",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.1",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"prettier": "^2.8.8",
"rimraf": "^3.0.2",
"semantic-release": "^24.2.3",
"ts-jest": "^29.3.0",
"ts-node": "^10.9.2",
"typedoc": "^0.28.1",
"typedoc-plugin-markdown": "^4.6.0",
"typescript": "^5.8.2"
}
}