{
    "name": "@aws/lsp-codewhisperer",
    "version": "0.0.122",
    "description": "CodeWhisperer Language Server",
    "main": "out/index.js",
    "repository": {
        "type": "git",
        "url": "https://github.com/aws/language-servers"
    },
    "author": "Amazon Web Services",
    "license": "Apache-2.0",
    "engines": {
        "node": ">=18.0.0"
    },
    "scripts": {
        "compile": "tsc --build",
        "fix": "npm run fix:prettier",
        "fix:prettier": "prettier . --write",
        "lint": "npm run lint:src",
        "lint:bundle:webworker": "webpack --config webpack.lint.config.js && eslint bundle/aws-lsp-codewhisperer-webworker.js # Verify compatibility with web runtime target",
        "lint:src": "eslint src/ --ext .ts,.tsx",
        "test:unit": "ts-mocha --timeout 0 -b \"./src/**/*.test.ts\"",
        "test:unit:coverage": "c8 ts-mocha --timeout 0 -b \"./src/**/*.test.ts\"",
        "test": "npm run lint && npm run test:unit",
        "test:coverage": "npm run lint && npm run test:unit:coverage",
        "coverage:report": "c8 report --reporter=html --reporter=text",
        "coverage:check": "c8 check-coverage --lines 80 --functions 80 --branches 50 --statements 80",
        "prepack": "npm run compile && ts-node ../../script/link_bundled_dependencies.ts",
        "postinstall": "node ./script/install_transitive_dep.js"
    },
    "dependencies": {
        "@amazon/elastic-gumby-frontend-client": "file:../../core/atx-fes-client/amazon-elastic-gumby-frontend-client-1.1.0.tgz",
        "@amzn/amazon-q-developer-streaming-client": "file:../../core/q-developer-streaming-client/amzn-amazon-q-developer-streaming-client-1.0.0.tgz",
        "@amzn/codewhisperer": "file:../../core/codewhisperer/amzn-codewhisperer-1.0.0.tgz",
        "@amzn/codewhisperer-runtime": "file:../../core/codewhisperer-runtime/amzn-codewhisperer-runtime-1.0.0.tgz",
        "@amzn/codewhisperer-streaming": "file:../../core/codewhisperer-streaming/amzn-codewhisperer-streaming-1.0.0.tgz",
        "@aws-sdk/types": "^3.734.0",
        "@aws-sdk/util-arn-parser": "^3.723.0",
        "@aws-sdk/util-retry": "^3.374.0",
        "@aws/chat-client-ui-types": "0.1.71",
        "@aws/language-server-runtimes": "^0.3.19",
        "@aws/lsp-core": "^0.0.21",
        "@modelcontextprotocol/sdk": "^1.23.0",
        "@mozilla/readability": "^0.6.0",
        "@smithy/node-http-handler": "^2.5.0",
        "adm-zip": "^0.5.10",
        "archiver": "^7.0.1",
        "async-mutex": "^0.5.0",
        "axios": "^1.8.4",
        "chokidar": "^4.0.3",
        "deepmerge": "^4.3.1",
        "diff": "^7.0.0",
        "encoding-japanese": "^2.2.0",
        "fast-glob": "^3.3.3",
        "fastest-levenshtein": "^1.0.16",
        "fdir": "^6.4.3",
        "fuse.js": "^7.1.0",
        "got": "^11.8.5",
        "hpagent": "^1.2.0",
        "ignore": "^7.0.3",
        "image-size": "^2.0.2",
        "js-md5": "^0.8.3",
        "jszip": "^3.10.1",
        "lokijs": "^1.5.12",
        "picomatch": "^4.0.2",
        "shlex": "2.1.2",
        "typescript-collections": "^1.3.3",
        "uuid": "^11.0.5",
        "vscode-uri": "^3.1.0",
        "ws": "^8.18.0",
        "xml2js": "^0.6.2",
        "xmlbuilder2": "^3.1.1"
    },
    "devDependencies": {
        "@types/adm-zip": "^0.5.5",
        "@types/archiver": "^6.0.2",
        "@types/diff": "^7.0.2",
        "@types/encoding-japanese": "^2.2.1",
        "@types/escape-html": "^1.0.4",
        "@types/ignore-walk": "^4.0.3",
        "@types/local-indexing": "file:./types/types-local-indexing-1.1.0.tgz",
        "@types/lokijs": "^1.5.14",
        "@types/uuid": "^9.0.8",
        "@types/xml2js": "^0.4.14",
        "assert": "^2.1.0",
        "c8": "^10.1.2",
        "copyfiles": "^2.4.1",
        "fast-check": "^4.6.0",
        "mock-fs": "^5.2.0",
        "sinon": "^19.0.2",
        "ts-loader": "^9.4.4",
        "ts-mocha": "^11.1.0",
        "ts-sinon": "^2.0.2",
        "vscode-languageserver-textdocument": "^1.0.11",
        "webpack": "^5.94.0",
        "webpack-cli": "^6.0.1"
    },
    "prettier": {
        "printWidth": 120,
        "trailingComma": "es5",
        "tabWidth": 4,
        "singleQuote": true,
        "semi": false,
        "bracketSpacing": true,
        "arrowParens": "avoid",
        "endOfLine": "lf"
    },
    "bundleDependencies": [
        "@amzn/codewhisperer",
        "@amzn/codewhisperer-runtime",
        "@amzn/codewhisperer-streaming",
        "@amzn/amazon-q-developer-streaming-client",
        "@amazon/elastic-gumby-frontend-client"
    ]
}
