UNPKG

dexplain

Version:

A TypeScript library for data explanation and analysis

64 lines (63 loc) 1.75 kB
{ "name": "dexplain", "version": "1.0.1", "description": "A TypeScript library for data explanation and analysis", "main": "dist/index.js", "module": "dist/index.js", "types": "dist/index.d.ts", "publishConfig": { "access": "public" }, "files": [ "dist", "README.md", "CHANGELOG.md" ], "scripts": { "dev": "tsx watch src/index.ts", "start": "tsx src/index.ts", "clean": "rm -rf dist", "release": "semantic-release", "prepublishOnly": "pnpm clean && pnpm build", "knip": "knip", "typecheck": "tsc --noEmit", "build": "tsup src/index.ts --format esm --target node22 --dts --out-dir dist --shims", "test": "vitest --passWithNoTests", "test:ui": "vitest --ui", "test:run": "vitest run --passWithNoTests", "test:coverage": "vitest run --coverage --passWithNoTests", "lint": "eslint src/**/*.ts", "lint:fix": "eslint src/**/*.ts --fix" }, "keywords": [ "typescript", "data", "analysis", "explanation" ], "author": "", "license": "MIT", "devDependencies": { "@eslint/js": "^9.31.0", "@semantic-release/changelog": "^6.0.3", "@semantic-release/git": "^10.0.1", "@semantic-release/npm": "^12.0.2", "@types/node": "^24.0.15", "@typescript-eslint/eslint-plugin": "^8.37.0", "@vitest/ui": "^3.2.4", "eslint": "^9.31.0", "eslint-config-prettier": "^10.1.8", "eslint-plugin-import": "^2.32.0", "eslint-plugin-unused-imports": "^4.1.4", "knip": "^5.62.0", "semantic-release": "^24.2.7", "tsup": "^8.5.0", "tsx": "^4.20.3", "typescript": "^5.8.3", "typescript-eslint": "^8.37.0", "vitest": "^3.2.4" }, "dependencies": { "@semantic-release/github": "^11.0.3" } }