{
  "name": "@sap-ux/store",
  "version": "1.0.0",
  "description": "NPM module for storing persistent data",
  "repository": {
    "type": "git",
    "url": "https://github.com/SAP/open-ux-tools.git",
    "directory": "packages/store"
  },
  "bugs": {
    "url": "https://github.com/SAP/open-ux-tools/issues?q=is%3Aopen+is%3Aissue+label%3Abug+label%3Astore"
  },
  "license": "Apache-2.0",
  "private": false,
  "main": "dist/index.js",
  "dependencies": {
    "i18next": "20.6.1",
    "i18next-fs-backend": "1.2.0",
    "pluralize": "8.0.0",
    "reflect-metadata": "0.1.13",
    "@sap-ux/logger": "0.6.0"
  },
  "optionalDependencies": {
    "@zowe/secrets-for-zowe-sdk": "8.1.2"
  },
  "devDependencies": {
    "@types/i18next-fs-backend": "1.1.2",
    "@types/pluralize": "0.0.30",
    "@types/qs": "6.9.1",
    "fast-check": "2.19.0",
    "jest": ">=29.7.0",
    "jest-extended": "4.0.2",
    "memfs": "3.3.0",
    "typescript": "5.6.2",
    "unionfs": "4.4.0"
  },
  "files": [
    "dist",
    "LICENSE",
    "!dist/*.map",
    "!dist/**/*.map"
  ],
  "engines": {
    "node": ">=18.x"
  },
  "scripts": {
    "build": "tsc --build",
    "watch": "tsc --watch",
    "clean": "rimraf --glob dist coverage *.tsbuildinfo",
    "format": "prettier --write '**/*.{js,json,ts,yaml,yml}' --ignore-path ../../.prettierignore",
    "lint": "eslint . --ext .ts",
    "lint:fix": "eslint . --ext .ts --fix",
    "test": "jest --ci --forceExit --detectOpenHandles --colors --silent",
    "test-u": "jest --ci --forceExit --detectOpenHandles --colors -u",
    "link": "pnpm link --global",
    "unlink": "pnpm unlink --global"
  }
}