@electric-sql/cli
Version:
CLI for Electric Cloud
46 lines • 1.04 kB
JSON
{
"name": "@electric-sql/cli",
"version": "0.0.3",
"description": "CLI for Electric Cloud",
"author": "ElectricSQL",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/electric-sql/electric.git"
},
"homepage": "https://electric-sql.com",
"type": "module",
"files": [
"dist",
"bin"
],
"exports": {
"./package.json": "./package.json"
},
"bin": {
"electric": "./bin/electric.js"
},
"dependencies": {
"@orpc/client": "^1.13.4",
"@orpc/contract": "^1.4.3",
"commander": "^13.1.0",
"open": "^10.1.0"
},
"devDependencies": {
"@tsconfig/node24": "^24.0.3",
"@types/node": "^24.10.4",
"tsup": "^8.4.0",
"tsx": "^4.19.3",
"typescript": "5.8.2",
"vitest": "^4.0.16",
"admin-api-contract": "0.0.0"
},
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsup",
"stylecheck": "eslint . --quiet",
"typecheck": "tsc --noEmit -p tsconfig.json",
"test": "vitest run",
"format": "eslint . --fix"
}
}