{
  "name": "@vaulx/vaulx",
  "version": "0.8.0",
  "type": "module",
  "bin": {
    "vaulx": "./dist/cli/index.js"
  },
  "scripts": {
    "dev": "tsx src/start.ts",
    "build": "tsc",
    "start": "node dist/start.js",
    "init": "tsx src/cli/index.ts init",
    "setup": "tsx src/cli/index.ts setup",
    "lint": "biome check .",
    "lint:fix": "biome check --write .",
    "format": "biome format --write .",
    "typecheck": "tsc --noEmit",
    "test": "vitest run",
    "test:unit": "vitest run tests/unit",
    "test:integration": "vitest run tests/integration",
    "test:watch": "vitest"
  },
  "dependencies": {
    "@lynq/lynq": "^0.12.0",
    "@lynq/store-sqlite": "^0.1.1",
    "@solana/spl-token": "^0.4.14",
    "@solana/web3.js": "^1.98.4",
    "better-sqlite3": "^11.10.0",
    "bs58": "^6.0.0",
    "permissionless": "^0.3.4",
    "tweetnacl": "^1.0.3",
    "viem": "^2.0.0",
    "zod": "^3.25.0"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/hogekai/vaulx"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.4.7",
    "@types/better-sqlite3": "^7.6.13",
    "@types/node": "^25.5.0",
    "tsx": "^4.0.0",
    "typescript": "^5.0.0",
    "vitest": "^4.1.0"
  }
}
