datapilot-cli
Version:
Enterprise-grade streaming multi-format data analysis with comprehensive statistical insights and intelligent relationship detection - supports CSV, JSON, Excel, TSV, Parquet - memory-efficient, cross-platform
129 lines (128 loc) • 4.21 kB
JSON
{
"name": "datapilot-cli",
"version": "1.7.1",
"description": "Enterprise-grade streaming multi-format data analysis with comprehensive statistical insights and intelligent relationship detection - supports CSV, JSON, Excel, TSV, Parquet - memory-efficient, cross-platform",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"datapilot": "dist/cli/index.js"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"!dist/**/*.map",
"scripts/postinstall.js",
"scripts/post-install-windows.js",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"build": "tsc",
"build:clean": "npm run clean && npm run build",
"dev": "tsc --watch",
"test": "jest tests/unit tests/integration",
"test:watch": "jest --watch tests/unit tests/integration",
"test:coverage": "jest --coverage tests/unit tests/integration",
"test:unit": "jest tests/unit",
"test:integration": "jest tests/integration",
"test:e2e": "jest tests/e2e --passWithNoTests",
"test:all": "npm run test:unit && npm run test:integration && npm run test:e2e",
"test:ci": "npm run test:unit && npm run test:integration && npm run test:e2e",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"typecheck": "tsc --noEmit",
"clean": "node scripts/clean.js",
"prebuild": "npm run clean",
"postbuild": "chmod +x dist/cli/index.js || true",
"postinstall": "node scripts/postinstall.js || true",
"test:installation": "node scripts/test-installation.js",
"test:package": "npm pack && npm install -g datapilot-cli-*.tgz && npm run test:installation && npm uninstall -g datapilot-cli",
"release": "node scripts/release-automation.js",
"pre-release": "npm run lint && npm run typecheck && npm run test:all && npm run build && npm run test:installation",
"build:binaries": "npm run build && node scripts/build-sea.js all",
"build:win": "npm run build && node scripts/build-sea.js win",
"build:mac": "npm run build && node scripts/build-sea.js mac",
"build:linux": "npm run build && node scripts/build-sea.js linux",
"build:all-platforms": "npm run build:win && npm run build:mac && npm run build:linux",
"pack:offline": "node scripts/create-offline-package.js"
},
"keywords": [
"data-analysis",
"csv",
"json",
"excel",
"tsv",
"parquet",
"multi-format",
"csv-parser",
"json-parser",
"excel-parser",
"parquet-parser",
"statistics",
"statistical-analysis",
"cli",
"command-line",
"data-quality",
"data-profiling",
"eda",
"exploratory-data-analysis",
"typescript",
"streaming",
"memory-efficient",
"cross-platform",
"windows",
"enterprise",
"proxy-friendly"
],
"author": "DataPilot Team",
"license": "MIT",
"homepage": "https://github.com/Mrassimo/datapilot#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Mrassimo/datapilot.git"
},
"bugs": {
"url": "https://github.com/Mrassimo/datapilot/issues"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"commander": "^12.1.0",
"exceljs": "^4.4.0",
"hyparquet": "^1.16.0",
"uuid": "^10.0.0"
},
"bundleDependencies": [
"commander",
"exceljs",
"hyparquet",
"uuid"
],
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.29.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@semantic-release/npm": "^11.0.2",
"@semantic-release/release-notes-generator": "^12.1.0",
"@types/jest": "^29.5.14",
"@types/node": "^20.19.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.34.0",
"@typescript-eslint/parser": "^8.34.0",
"eslint": "^9.29.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.4.1",
"jest": "^29.7.0",
"madge": "^8.0.0",
"npm-check-updates": "^18.0.1",
"prettier": "^3.5.3",
"semantic-release": "^22.0.12",
"ts-jest": "^29.4.0",
"typescript": "^5.8.3"
}
}