{
  "name": "@pixpilot/chrome-storage",
  "type": "module",
  "version": "1.0.1",
  "description": "A powerful and type-safe Chrome Storage API wrapper with optional built-in encryption support for Chrome extensions.",
  "author": "ccpu",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/pixpilot/chrome-extension-toolkit.git",
    "directory": "packages/chrome-storage"
  },
  "keywords": [],
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    }
  },
  "files": [
    "dist"
  ],
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "@types/node": "^22.18.12",
    "eslint": "^9.38.0",
    "tsdown": "^0.15.9",
    "typescript": "^5.9.3",
    "@internal/eslint-config": "0.3.0",
    "@internal/prettier-config": "0.1.0",
    "@internal/tsconfig": "0.1.0",
    "@internal/tsdown-config": "0.1.0",
    "@internal/vitest-config": "0.1.0"
  },
  "prettier": "@internal/prettier-config",
  "scripts": {
    "clean": "git clean -xdf .cache .turbo dist",
    "clean:all": "git clean -xdf .cache .turbo dist node_modules",
    "build": "tsdown",
    "build:watch": "tsdown --watch",
    "test": "vitest --run --passWithNoTests",
    "test:watch": "vitest --watch",
    "test:ui": "vitest --ui",
    "test:coverage": "vitest --coverage",
    "typecheck": "tsc --noEmit",
    "lint": "eslint",
    "format": "prettier --check . --ignore-path ../../.gitignore --ignore-path ../../.prettierignore"
  },
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts"
}