{
    "description": "General Language Independent Driver for the Enterprise (GLIDE) for Valkey",
    "main": "build-ts/index.js",
    "module": "build-ts/index.js",
    "types": "./build-ts/index.d.ts",
    "type": "commonjs",
    "repository": {
        "type": "git",
        "url": "git+https://github.com/valkey-io/valkey-glide.git"
    },
    "homepage": "https://github.com/valkey-io/valkey-glide#readme",
    "dependencies": {
        "glide-rs": "file:rust-client",
        "long": "5",
        "protobufjs": "7"
    },
    "bundleDependencies": [
        "glide-rs"
    ],
    "scripts": {
        "build": "npm run prereq && npm run build-internal && npm run build-protobuf && npm run build-external",
        "build:release": "npm run build-internal:release && npm run build-protobuf && npm run build-external:release",
        "build:benchmark": "npm run build-internal:benchmark && npm run build-protobuf && npm run build-external",
        "build-internal": "cd rust-client && npm run build",
        "build-internal:release": "cd rust-client && npm run build:release",
        "build-internal:benchmark": "cd rust-client && npm run build:benchmark",
        "build-external": "rm -rf build-ts && tsc && npm run copy-protobuf-type",
        "build-external:release": "rm -rf build-ts && tsc --stripInternal && npm run copy-protobuf-type",
        "build-protobuf": "npm run compile-protobuf-files && npm run fix-protobuf-file",
        "copy-protobuf-type": "cp src/ProtobufMessage.d.ts build-ts/src/ProtobufMessage.d.ts",
        "compile-protobuf-files": "cd src && pbjs -t static-module -o ProtobufMessage.js ../../glide-core/src/protobuf/*.proto && pbts -o ProtobufMessage.d.ts ProtobufMessage.js",
        "clean": "rm -rf build-ts rust-client/target docs glide-logs rust-client/glide-rs.*.node rust-client/index.* src/ProtobufMessage.*",
        "fix-protobuf-file": "replace 'this\\.encode\\(message, writer\\)\\.ldelim' 'this.encode(message, writer && writer.len ? writer.fork() : writer).ldelim' src/ProtobufMessage.js",
        "test": "npm run build-test-utils && jest --verbose --testPathIgnorePatterns='ServerModules'",
        "test-dbg": "npm run build-test-utils && jest --runInBand",
        "test-minimum": "npm run build-test-utils && jest --verbose --runInBand --testNamePattern='^(.(?!(GlideJson|GlideFt|pubsub|kill)))*$'",
        "test-modules": "npm run build-test-utils && jest --verbose --runInBand --testNamePattern='(GlideJson|GlideFt)'",
        "build-test-utils": "cd ../utils && npm i && npm run build",
        "lint:fix": "npm run install-linting && npx eslint -c ../eslint.config.mjs --fix && npm run prettier:format",
        "lint": "npm run install-linting && npx eslint -c ../eslint.config.mjs && npm run prettier:check:ci",
        "install-linting": "cd ../ & npm install",
        "prepack": "npmignore --auto",
        "prereq": "npm install",
        "prettier:check:ci": "npx prettier --check . --ignore-unknown '!**/*.{js,d.ts}'",
        "prettier:format": "npx prettier --write . --ignore-unknown '!**/*.{js,d.ts}'"
    },
    "devDependencies": {
        "@jest/globals": "^29",
        "@types/jest": "^29",
        "@types/minimist": "^1",
        "@types/redis-server": "^1",
        "@types/semver": "^7",
        "@types/uuid": "^10.0.0",
        "find-free-port": "^2.0.0",
        "jest": "29",
        "jest-html-reporter": "4",
        "npmignore": "0.3",
        "protobufjs-cli": "1",
        "replace": "1",
        "semver": "7",
        "ts-jest": "29",
        "ts-node": "10",
        "typedoc": "0.28",
        "typedoc-plugin-markdown": "4",
        "typescript": "5",
        "uuid": "11"
    },
    "author": "Valkey GLIDE Maintainers",
    "license": "Apache-2.0",
    "publishConfig": {
        "@valkey:registry": "https://registry.npmjs.org/",
        "ignore": [
            "src/**",
            "tests/",
            "rust-client/**",
            "!build-ts/**",
            ".prettierignore",
            "jest.config.js",
            "hybrid-node-tests/**",
            "docs/",
            "DEVELOPER.md",
            ".ort.yml",
            "tsconfig.json",
            "THIRD_PARTY_LICENSES_NODE"
        ]
    },
    "engines": {
        "node": ">=16"
    },
    "//": [
        "The fields below have been commented out and are only necessary for publishing the package."
    ],
    "cpu": [
        "arm64"
    ],
    "os": [
        "linux"
    ],
    "name": "@valkey/valkey-glide-linux-arm64",
    "version": "1.3.4",
    "//libc": ""
}
