{
    "name": "nresume",
    "version": "1.1.2",
    "type": "module",
    "description": "A parser to parse resume into JSON format for any esm based platform like React, Next.js, Vanilla JS etc.",
    "main": "dist/index.mjs",
    "types": "dist/index.d.ts",
    "files": [
        "dist/**/*"
    ],
    "scripts": {
        "build": "rollup -c",
        "build:main": "tsc --project tsconfig.json",
        "clean": "rm -rf ./dist/",
        "cm": "cz",
        "lint": "eslint ./src/ --fix",
        "prepare": "husky install",
        "semantic-release": "semantic-release",
        "typecheck": "tsc --noEmit"
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/AvaterClasher/nresume.git"
    },
    "license": "MIT",
    "author": {
        "name": "Soumyadip Moni",
        "email": "avater.clasher@gmail.com",
        "url": "https://github.com/AvaterClasher"
    },
    "engines": {
        "node": ">=16.0"
    },
    "keywords": [
        "resume",
        "parser",
        "resume-parser",
        "json",
        "react",
        "typescript",
        "next.js"
    ],
    "bugs": {
        "url": "https://github.com/AvaterClasher/nresume.git/issues"
    },
    "homepage": "https://github.com/AvaterClasher/nresume.git#readme",
    "devDependencies": {
        "@rollup/plugin-commonjs": "^28.0.1",
        "@rollup/plugin-node-resolve": "^15.3.0",
        "@ryansonshine/commitizen": "^4.2.8",
        "@ryansonshine/cz-conventional-changelog": "^3.3.4",
        "@types/node": "^12.20.11",
        "@typescript-eslint/eslint-plugin": "^4.22.0",
        "@typescript-eslint/parser": "^4.22.0",
        "conventional-changelog-conventionalcommits": "^5.0.0",
        "eslint": "^7.25.0",
        "eslint-config-prettier": "^8.3.0",
        "eslint-plugin-node": "^11.1.0",
        "eslint-plugin-prettier": "^3.4.0",
        "husky": "^6.0.0",
        "lint-staged": "^13.2.1",
        "prettier": "^2.2.1",
        "rollup": "^4.24.0",
        "rollup-plugin-copy": "^3.5.0",
        "rollup-plugin-typescript2": "^0.36.0",
        "semantic-release": "^21.0.1",
        "ts-node": "^10.2.1",
        "typescript": "^5.6.3"
    },
    "config": {
        "commitizen": {
            "path": "./node_modules/@ryansonshine/cz-conventional-changelog"
        }
    },
    "lint-staged": {
        "*.ts": "eslint --cache --cache-location .eslintcache --fix"
    },
    "release": {
        "branches": [
            "main",
            "prelease"
        ],
        "plugins": [
            [
                "@semantic-release/commit-analyzer",
                {
                    "preset": "conventionalcommits",
                    "releaseRules": [
                        {
                            "type": "build",
                            "scope": "deps",
                            "release": "patch"
                        }
                    ]
                }
            ],
            [
                "@semantic-release/release-notes-generator",
                {
                    "preset": "conventionalcommits",
                    "presetConfig": {
                        "types": [
                            {
                                "type": "feat",
                                "section": "Features"
                            },
                            {
                                "type": "fix",
                                "section": "Bug Fixes"
                            },
                            {
                                "type": "build",
                                "section": "Dependencies and Other Build Updates",
                                "hidden": false
                            }
                        ]
                    }
                }
            ],
            "@semantic-release/npm",
            "@semantic-release/github"
        ]
    },
    "dependencies": {
        "pdfjs-dist": "^4.7.76"
    }
}
