{
  "name": "@hyperledger/cactus-plugin-keychain-memory-wasm",
  "version": "1.1.3",
  "description": "Dummy keychain implementation doing NO encryption and storing everything in-memory. Only suitable for development and testing. Same as the non-wasm version but this one has the backing implementation written in Rust and compiled down to WebAssembly.",
  "keywords": [
    "Hyperledger",
    "Cactus",
    "Integration",
    "Blockchain",
    "Distributed Ledger Technology"
  ],
  "homepage": "https://github.com/hyperledger/cactus#readme",
  "bugs": {
    "url": "https://github.com/hyperledger/cactus/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/hyperledger/cactus.git"
  },
  "license": "Apache-2.0",
  "author": {
    "name": "Hyperledger Cactus Contributors",
    "email": "cactus@lists.hyperledger.org",
    "url": "https://www.hyperledger.org/use/cactus"
  },
  "contributors": [
    {
      "name": "Please add yourself to the list of contributors",
      "email": "your.name@example.com",
      "url": "https://example.com"
    },
    {
      "name": "Peter Somogyvari",
      "email": "peter.somogyvari@accenture.com",
      "url": "https://accenture.com"
    }
  ],
  "main": "dist/lib/main/typescript/index.js",
  "module": "dist/lib/main/typescript/index.js",
  "browser": "dist/cactus-plugin-keychain-memory-wasm.web.umd.js",
  "types": "dist/lib/main/typescript/index.d.ts",
  "files": [
    "dist/*"
  ],
  "scripts": {
    "codegen": "run-p 'codegen:*'",
    "codegen:openapi": "npm run generate-sdk",
    "copy-wasm-bg": "cpy './main/typescript/generated/wasm-pack/cactus_plugin_keychain_memory_wasm_bg*' '../dist/lib/' --cwd=src --parents",
    "del-wasm-pack-project-files": "del-cli src/main/typescript/generated/wasm-pack/{package.json,README.md,.gitignore}",
    "generate-rust-server": "openapi-generator-cli generate -i ./src/main/json/openapi.json -g rust-server -o ./src/main/rust/generated/openapi/rust-server",
    "generate-sdk": "openapi-generator-cli generate -i ./src/main/json/openapi.json -g typescript-axios -o ./src/main/typescript/generated/openapi/typescript-axios/ --reserved-words-mappings protected=protected",
    "wasm-pack": "CARGO_TARGET_DIR=${PWD}/dist/target-rustc/ wasm-pack build src/main/rust/cactus-plugin-keychain-memory-wasm/ --release --scope=hyperledger --target=nodejs --out-dir=../../../../src/main/typescript/generated/wasm-pack/",
    "postwasm-pack": "run-s del-wasm-pack-project-files copy-wasm-bg",
    "watch": "npm-watch",
    "webpack": "npm-run-all webpack:dev",
    "webpack:dev": "npm-run-all webpack:dev:node webpack:dev:web",
    "webpack:dev:node": "webpack --env=dev --target=node --config ../../webpack.config.js",
    "webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js"
  },
  "dependencies": {
    "@hyperledger/cactus-common": "1.1.3",
    "@hyperledger/cactus-core": "1.1.3",
    "@hyperledger/cactus-core-api": "1.1.3",
    "axios": "0.21.4",
    "express": "4.17.1",
    "prom-client": "13.2.0",
    "uuid": "8.3.2"
  },
  "devDependencies": {
    "@types/express": "4.17.13",
    "cpy-cli": "4.1.0",
    "del-cli": "4.0.1"
  },
  "engines": {
    "node": ">=10",
    "npm": ">=6"
  },
  "publishConfig": {
    "access": "public"
  },
  "browserMinified": "dist/cactus-plugin-keychain-memory-wasm.web.umd.min.js",
  "mainMinified": "dist/cactus-plugin-keychain-memory-wasm.node.umd.min.js",
  "watch": {
    "codegen:openapi": {
      "patterns": [
        "./src/main/json/openapi.json"
      ]
    }
  }
}
