@alsania-io/cli
Version:
Alsania CLI - Unified command-line interface for the entire Alsania ecosystem
72 lines (71 loc) • 1.91 kB
JSON
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@alsania-io/cli",
"version": "1.0.0",
"description": "Alsania CLI - Unified command-line interface for the entire Alsania ecosystem",
"keywords": [
"alsania",
"cli",
"mcp",
"tool-registry",
"gateway",
"monorepo",
"management"
],
"homepage": "https://github.com/alsania-io/alsania-cli#readme",
"bugs": {
"url": "https://github.com/alsania-io/alsania-cli/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alsania-io/alsania-cli.git"
},
"license": "MIT",
"author": "Alsania",
"type": "module",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"alsania": "dist/cli.js",
"als": "dist/cli.js"
},
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"dev": "tsx watch src/cli.ts",
"build": "tsc",
"start": "node dist/cli.js",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src/**/*.ts --ext .ts",
"lint:fix": "eslint src/**/*.ts --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\" \"*.{json,md}\"",
"format:check": "prettier --check \"src/**/*.ts\" \"*.{json,md}\"",
"type-check": "tsc --noEmit",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build"
},
"dependencies": {
"chalk": "^5.6.2",
"commander": "^14.0.2",
"cross-spawn": "^7.0.6",
"dotenv": "^17.2.3",
"nanoid": "^5.1.6",
"ora": "^9.0.0",
"tsx": "^4.20.6"
},
"devDependencies": {
"@types/cross-spawn": "^6.0.6",
"@types/node": "^24.9.2",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"eslint": "^9.39.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"jest": "^30.2.0",
"prettier": "^3.6.2",
"typescript": "^5.9.3"
}
}