UNPKG

revit-cli

Version:

A scalable CLI tool for Revit communication and data manipulation

66 lines (65 loc) 1.73 kB
{ "name": "revit-cli", "version": "0.1.1", "description": "A scalable CLI tool for Revit communication and data manipulation", "main": "dist/index.js", "bin": { "revit-cli": "dist/cli.js" }, "scripts": { "build": "tsc && tsc-alias", "build:deploy": "npm run build && powershell -ExecutionPolicy Bypass -File scripts/deploy-to-revit.ps1", "build:full": "npm run build && cd revit-addin && powershell -ExecutionPolicy Bypass -File build.ps1 -Deploy -DeployCli", "dev": "ts-node -r tsconfig-paths/register src/cli.ts", "start": "node dist/cli.js", "test": "jest", "test:watch": "jest --watch", "lint": "eslint src/**/*.ts", "lint:fix": "eslint src/**/*.ts --fix", "clean": "rimraf dist", "prepublishOnly": "npm run clean && npm run build" }, "keywords": [ "revit", "cli", "bim", "architecture", "data-extraction", "automation" ], "author": "Your Name", "license": "MIT", "engines": { "node": ">=16.0.0" }, "dependencies": { "axios": "^1.6.2", "chalk": "^4.1.2", "commander": "^11.1.0", "fs-extra": "^11.2.0", "glob": "^10.3.10", "inquirer": "^8.2.6", "yaml": "^2.3.4" }, "devDependencies": { "@types/fs-extra": "^11.0.4", "@types/inquirer": "^9.0.7", "@types/jest": "^29.5.8", "@types/node": "^20.10.5", "@typescript-eslint/eslint-plugin": "^6.14.0", "@typescript-eslint/parser": "^6.14.0", "eslint": "^8.55.0", "jest": "^29.7.0", "rimraf": "^5.0.5", "ts-jest": "^29.1.1", "ts-node": "^10.9.2", "tsc-alias": "^1.8.16", "tsconfig-paths": "^4.2.0", "typescript": "^5.3.3" }, "files": [ "dist/**/*", "README.md", "LICENSE" ] }