{
  "name": "@axlabs/neofs-sdk-ts-node",
  "version": "0.0.6",
  "description": "TypeScript SDK for NeoFS - Node.js Edition",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "require": "./dist/index.js",
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./client": {
      "require": "./dist/client/index.js",
      "import": "./dist/client/index.js",
      "types": "./dist/client/index.d.ts"
    }
  },
  "scripts": {
    "build": "tsc && cp -r src/gen dist/ 2>/dev/null || true",
    "generate": "sh scripts/ensure-protoc-gen-grpc-ts.sh && protoc --plugin=./bin/protoc-gen-grpc-ts --grpc-ts_out=target=nodejs:src/gen -I neofs-api neofs-api/accounting/service.proto neofs-api/accounting/types.proto neofs-api/acl/types.proto neofs-api/audit/types.proto neofs-api/container/service.proto neofs-api/container/types.proto neofs-api/link/types.proto neofs-api/lock/types.proto neofs-api/netmap/service.proto neofs-api/netmap/types.proto neofs-api/object/service.proto neofs-api/object/types.proto neofs-api/refs/types.proto neofs-api/reputation/service.proto neofs-api/reputation/types.proto neofs-api/session/service.proto neofs-api/session/types.proto neofs-api/status/types.proto neofs-api/storagegroup/types.proto neofs-api/subnet/types.proto neofs-api/tombstone/types.proto",
    "generate:clean": "rm -rf src/gen/* && mkdir -p src/gen",
    "generate:all": "sh scripts/ensure-protoc-gen-grpc-ts.sh && npm run generate:clean && npm run generate",
    "test": "vitest run",
    "test:unit": "vitest run",
    "test:integration": "jest -c jest.integration.config.js --runInBand",
    "test:watch": "vitest",
    "lint": "eslint src/**/*.ts",
    "format": "prettier --write src/**/*.ts",
    "clean": "rm -rf dist",
    "prebuild": "npm run clean",
    "prepublishOnly": "npm run build",
    "publish:dry-run": "npm publish --dry-run",
    "publish:public": "npm publish --access public"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/AxLabs/neofs-sdk-ts-node"
  },
  "bugs": {
    "url": "https://github.com/AxLabs/neofs-sdk-ts-node/issues"
  },
  "homepage": "https://github.com/AxLabs/neofs-sdk-ts-node#readme",
  "keywords": [
    "neofs",
    "blockchain",
    "storage",
    "typescript",
    "sdk",
    "nodejs"
  ],
  "author": "AxLabs Team",
  "license": "Apache-2.0",
  "devDependencies": {
    "@types/elliptic": "^6.4.18",
    "@types/jest": "^29.5.12",
    "@types/node": "^20.11.17",
    "@types/ripemd160": "^2.0.3",
    "@typescript-eslint/eslint-plugin": "^7.1.1",
    "@typescript-eslint/parser": "^7.1.1",
    "eslint": "^8.57.0",
    "jest": "^29.7.0",
    "prettier": "^3.2.5",
    "ts-jest": "^29.1.2",
    "typescript": "^5.3.3",
    "vitest": "^4.1.5"
  },
  "dependencies": {
    "@axlabs/neofs-sdk-ts-core": "^0.0.2",
    "@grpc/grpc-js": "^1.14.0",
    "@grpc/proto-loader": "^0.8.0",
    "ripemd160": "^2.0.3"
  },
  "files": [
    "dist"
  ]
}
