{
    "name": "transcriptator",
    "version": "1.1.4",
    "packageManager": "yarn@4.0.2",
    "description": "Library for converting the various transcript file formats to a common format.",
    "main": "index.js",
    "types": "index.d.ts",
    "scripts": {
        "build": "run-s -cln 'build:*'",
        "build:clean": "shx rm -rf dist",
        "build:tsc": "tsc --sourceMap false",
        "build:cp": "shx cp package.json dist && shx cp README.md dist && shx cp LICENSE.md dist",
        "build:replace": "shx sed -i 's/\"main\": \"index.ts\"/\"main\": \"index.js\"/g' dist/package.json > /dev/null",
        "lint": "run-p -cln 'lint:*'",
        "lint:eslint": "eslint src/ test/",
        "lint:prettier": "prettier --check .",
        "lint-fix": "run-p -cln 'lint-fix:*'",
        "lint-fix:other": "prettier --write '**/*.{md,json,yml,config.js}'",
        "lint-fix:eslint": "yarn lint:eslint --fix",
        "test": "jest",
        "test:coverage": "yarn test --coverage",
        "tag": "npm version patch",
        "build-publish": "yarn lint && yarn test && yarn build && cd dist && npm publish",
        "build-publish-beta": "yarn lint && yarn test && yarn build && cd dist && npm publish --tag beta"
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/stevencrader/transcriptator.git"
    },
    "keywords": [
        "podcasting",
        "transcript"
    ],
    "author": {
        "name": "Steven Crader",
        "url": "https://steven.crader.co"
    },
    "license": "MIT",
    "bugs": {
        "url": "https://github.com/stevencrader/transcriptator/issues"
    },
    "homepage": "https://transcriptator.com/",
    "devDependencies": {
        "@jest/globals": "^29.7.0",
        "@types/node": "^20.11.7",
        "@typescript-eslint/eslint-plugin": "^6.19.1",
        "@typescript-eslint/parser": "^6.19.1",
        "dotenv": "^16.4.1",
        "eslint": "^8.56.0",
        "eslint-config-airbnb-base": "^15.0.0",
        "eslint-config-airbnb-typescript": "^17.1.0",
        "eslint-config-airbnb-typescript-base": "^5.0.1",
        "eslint-config-prettier": "^9.1.0",
        "eslint-import-resolver-typescript": "^3.6.1",
        "eslint-plugin-import": "^2.29.1",
        "eslint-plugin-jsdoc": "^48.0.4",
        "eslint-plugin-prettier": "^5.1.3",
        "eslint-plugin-sonarjs": "^0.23.0",
        "jest": "^29.5.0",
        "npm-run-all": "^4.1.5",
        "prettier": "^3.2.4",
        "rimraf": "^5.0.5",
        "shx": "^0.3.4",
        "ts-jest": "^29.1.2",
        "typescript": "^5.3.3"
    },
    "dependencies": {
        "node-html-parser": "^6.1.12"
    }
}
