{
    "name": "openai-whisper-js",
    "version": "1.0.7",
    "description": "openai-whisper-js is a Node.js wrapper for the OpenAI Whisper library, enabling seamless audio transcription using Whisper models. This package simplifies the process of interacting with Whisper by providing a JavaScript interface to execute transcriptions.",
    "main": "build/index.js",
    "files": [
        "build/**/*",
        "python-env",
        "output",
        "init-python-env.sh",
        "transcribe.sh",
        "install.ts"
    ],
    "scripts": {
        "build": "tsc",
        "format": "prettier --config .prettierrc 'src/**/*.ts' --write",
        "lint": "eslint . --ext .ts",
        "lint:fix": "eslint . --ext .ts --fix",
        "prepare": "npm run build",
        "prepublishOnly": "npm run lint",
        "preversion": "npm run lint && npm run test",
        "test": "mocha -r ts-node/register src/test/**/*.test.ts",
        "postinstall": "node ./build/install.js"
    },
    "keywords": [
        "openai",
        "whisper",
        "audio",
        "transcription",
        "speech-to-text",
        "openai-whisper",
        "whisper-js",
        "audio-processing",
        "ai-transcription",
        "python-wrapper",
        "typescript",
        "nodejs",
        "speech-recognition"
    ],
    "author": "Ahmed Adel",
    "license": "MIT",
    "bugs": {
        "url": "https://github.com/AhmedAdelFahim/openai-whisper-js/issues"
    },
    "homepage": "https://github.com/AhmedAdelFahim/openai-whisper-js#readme",
    "devDependencies": {
        "@types/mocha": "^10.0.6",
        "@types/node": "^18.11.18",
        "@typescript-eslint/eslint-plugin": "^5.49.0",
        "@typescript-eslint/parser": "^5.49.0",
        "eslint": "^8.33.0",
        "eslint-config-prettier": "^8.6.0",
        "eslint-plugin-prettier": "^4.2.1",
        "mocha": "^10.2.0",
        "prettier": "^2.8.3",
        "rimraf": "^4.1.2",
        "ts-node": "^10.9.2",
        "ts-node-dev": "^2.0.0",
        "typescript": "^4.9.4"
    },
    "dependencies": {}
}