UNPKG

plan-viz

Version:

Convert Apache Data Fusion Physical Execution Plans to Excalidraw JSON format

86 lines (85 loc) 2 kB
{ "name": "plan-viz", "version": "0.1.8", "description": "Convert Apache Data Fusion Physical Execution Plans to Excalidraw JSON format", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "plan-viz": "dist/cli.js" }, "scripts": { "build": "tsc", "clean": "rimraf dist coverage", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "lint": "eslint src --ext .ts", "lint:fix": "eslint src --ext .ts --fix", "format": "prettier --write \"src/**/*.ts\"", "prepublishOnly": "npm run clean && npm run build && npm test", "commit": "cz" }, "keywords": [ "apache", "datafusion", "data-fusion", "execution-plan", "excalidraw", "visualization", "query-plan", "sql", "diagram", "arrow", "apache-arrow" ], "author": { "name": "NGA-TRAN" }, "license": "MIT", "engines": { "node": ">=20.0.0" }, "files": [ "dist", "README.md", "LICENSE" ], "exports": { ".": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "./package.json": "./package.json" }, "dependencies": { "commander": "^12.1.0" }, "devDependencies": { "@types/jest": "^29.5.12", "@types/node": "^20.11.30", "@typescript-eslint/eslint-plugin": "^7.4.0", "@typescript-eslint/parser": "^7.4.0", "commitizen": "^4.3.1", "cz-conventional-changelog": "^3.0.1", "eslint": "^8.57.0", "eslint-config-google": "^0.14.0", "jest": "^29.7.0", "prettier": "^3.2.5", "rimraf": "^6.1.0", "ts-jest": "^29.1.2", "typescript": "^5.4.3" }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } }, "repository": { "type": "git", "url": "git+https://github.com/NGA-TRAN/plan_viz.git" }, "bugs": { "url": "https://github.com/NGA-TRAN/plan_viz/issues" }, "homepage": "https://github.com/NGA-TRAN/plan_viz#readme" }