UNPKG

resume-anonymizer

Version:

A flexible NPM package for anonymizing resumes to reduce bias in hiring

63 lines (62 loc) 1.85 kB
{ "name": "resume-anonymizer", "version": "0.2.0", "description": "A flexible NPM package for anonymizing resumes to reduce bias in hiring", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist" ], "scripts": { "build": "tsc", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "lint": "eslint 'src/**/*.ts' --ignore-pattern '**/*.test.ts' --ignore-pattern '**/*.spec.ts'", "lint:fix": "eslint . --fix", "format": "prettier --write .", "format:check": "prettier --check .", "typecheck": "tsc --noEmit", "prepublishOnly": "npm run build && npm run test && npm run lint", "prerelease": "npm run lint && npm run typecheck && npm run test", "release": "npm run prerelease && npm run build", "release:patch": "npm run release && npm version patch && npm publish", "release:minor": "npm run release && npm version minor && npm publish", "release:major": "npm run release && npm version major && npm publish", "release:dry": "npm run release && npm pack --dry-run" }, "author": "", "license": "MIT", "keywords": [ "resume", "anonymization", "bias-reduction", "hiring", "privacy", "pii" ], "engines": { "node": ">=14.0.0" }, "repository": { "type": "git", "url": "https://github.com/yourusername/resume-anonymizer.git" }, "devDependencies": { "@types/jest": "^30.0.0", "@types/node": "^24.1.0", "@typescript-eslint/eslint-plugin": "^8.38.0", "@typescript-eslint/parser": "^8.38.0", "eslint": "^9.32.0", "eslint-config-prettier": "^10.1.8", "jest": "^30.0.5", "prettier": "^3.6.2", "ts-jest": "^29.4.0", "typescript": "^5.8.3" }, "dependencies": { "@ai-sdk/openai": "^1.3.23", "ai": "^4.3.19", "zod": "^3.25.76" } }