{
  "name": "clawpowers",
  "version": "2.2.7",
  "description": "Skills library for AI agents — payments, memory, RSI, wallet. Drop-in capability layer for any agent framework.",
  "type": "module",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "files": [
    "dist",
    "skills",
    "src/skills",
    "native/Cargo.toml",
    "native/Cargo.lock",
    "native/crates",
    "native/ffi",
    "native/wasm",
    "native/wasm/pkg",
    "native/wasm/pkg-node",
    "native/pyo3",
    "README.md",
    "LICENSE",
    "CHANGELOG.md",
    "SECURITY.md",
    "COMPATIBILITY.md",
    "skill.json",
    "KNOWN_LIMITATIONS.md",
    "LICENSING.md",
    "scripts/"
  ],
  "scripts": {
    "build:native": "cd native && cargo build --release --workspace || echo 'Rust not installed - using WASM/TS fallback'",
    "build:wasm": "node scripts/build-wasm.mjs",
    "build": "tsup",
    "test": "vitest run",
    "test:watch": "vitest",
    "typecheck": "tsc --noEmit",
    "lint": "eslint src tests benchmarks",
    "verify:pack": "npm pack --dry-run",
    "verify:pack:surface": "npm pack --dry-run --ignore-scripts",
    "verify:hermes": "node scripts/run-python-script.mjs scripts/verify_hermes_wrappers.py",
    "clean": "node -e \"fs.rmSync('dist',{recursive:true,force:true})\"",
    "prepublishOnly": "npm run build",
    "prepack": "npm run build:wasm && npm run build",
    "verify:consumer-install": "node scripts/verify-consumer-install.mjs"
  },
  "keywords": [
    "ai-agent",
    "payments",
    "x402",
    "memory",
    "rsi",
    "self-improvement",
    "wallet",
    "skills",
    "langchain",
    "claude",
    "elizaos"
  ],
  "author": "AI Agent Economy <bill@ai-agent-economy.com>",
  "license": "BSL-1.1",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/up2itnow0822/ClawPowers-Skills.git"
  },
  "bugs": {
    "url": "https://github.com/up2itnow0822/ClawPowers-Skills/issues"
  },
  "homepage": "https://clawpowers.ai",
  "engines": {
    "node": ">=22.0.0"
  },
  "dependencies": {
    "zod": "^4.4.3"
  },
  "devDependencies": {
    "@types/node": "^25.5.0",
    "@typescript-eslint/eslint-plugin": "^8.0.0",
    "@typescript-eslint/parser": "^8.0.0",
    "eslint": "^10.3.0",
    "globals": "^17.4.0",
    "tsup": "^8.0.0",
    "typescript": "^5.5.0",
    "vitest": "^4.1.5"
  }
}
