{
  "name": "@drupal-js-sdk/storage",
  "version": "0.5.1",
  "description": "Drupal JavaScript SDK : Storage",
  "keywords": [
    "Drupal",
    "javascript",
    "sdk"
  ],
  "homepage": "https://github.com/d34dman/drupal-js-sdk/tree/main/packages/core#readme",
  "bugs": {
    "url": "https://github.com/d34dman/drupal-js-sdk/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/d34dman/drupal-js-sdk.git"
  },
  "license": "ISC",
  "author": "d34dman <shibinkidd@gmail.com>",
  "type": "module",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist"
  ],
  "dependencies": {
    "@drupal-js-sdk/error": "^0.5.1",
    "@drupal-js-sdk/interfaces": "^0.5.1"
  },
  "devDependencies": {
    "@changesets/cli": "^2.26.0",
    "@commitlint/cli": "^17.3.0",
    "@commitlint/config-conventional": "^17.3.0",
    "@rollup/plugin-replace": "^5.0.2",
    "@types/jest": "^29.2.4",
    "@types/node": "^18.11.18",
    "@typescript-eslint/eslint-plugin": "^5.47.1",
    "@typescript-eslint/parser": "^5.47.1",
    "commitlint-plugin-workspace-scopes": "^1.1.0",
    "cross-env": "^7.0.3",
    "esbuild": "^0.25.9",
    "eslint": "^8.30.0",
    "eslint-plugin-no-loops": "^0.3.0",
    "husky": "^8.0.2",
    "jest": "^29.3.1",
    "jest-environment-jsdom": "^29.3.1",
    "rollup": "^3.8.1",
    "rollup-plugin-dts": "^5.1.0",
    "rollup-plugin-esbuild": "^5.0.0",
    "ts-jest": "^29.0.3",
    "typedoc": "^0.23.23",
    "typescript": "^4.9.4"
  },
  "scripts": {
    "build": "rollup -c",
    "changeset": "changeset",
    "clean": "pnpm clean:dist && pnpm clean:test && pnpm clean:docs",
    "clean:dist": "rimraf ./dist || true",
    "clean:test": "rimraf ./coverage || true",
    "clean:docs": "rimraf ./api || true",
    "lint:commit": "commitlint",
    "preinstall": "npx only-allow pnpm",
    "version": "changeset version",
    "docs": "typedoc --options typedoc.json --out api",
    "format": "pnpm run lint-and-fix",
    "lint": "eslint . --ext .ts",
    "lint-and-fix": "eslint . --ext .ts --fix",
    "test": "jest --config jestconfig.json",
    "test-build": "pnpm run build && node test-build.js",
    "preversion": "pnpm run lint",
    "postversion": "git push && git push --tags"
  }
}