{
  "name": "@bearstudio/lunalink",
  "version": "0.3.2",
  "license": "MIT",
  "description": "Lightweight TypeScript library to efficiently maintain and build URLs",
  "keywords": [
    "typescript",
    "url",
    "builder",
    "luna",
    "link",
    "parameters",
    "ts",
    "dynamic"
  ],
  "type": "module",
  "exports": {
    ".": {
      "types": "./src/index.ts",
      "default": "./dist/index.js"
    },
    "./package.json": "./package.json"
  },
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "@vitest/coverage-v8": "3.0.8",
    "tsup": "8.4.0",
    "type-testing": "0.2.0",
    "typescript": "latest",
    "vitest": "3.0.8",
    "@repo/typescript-config": "0.0.0"
  },
  "dependencies": {
    "query-string": "9.1.1"
  },
  "author": {
    "email": "yoann@bearstudio.fr",
    "name": "Yoann Fleury",
    "url": "https://www.yoannfleury.dev"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/BearStudio/lunalink.git",
    "directory": "packages/lunalink"
  },
  "bugs": {
    "url": "https://github.com/BearStudio/lunalink/issues"
  },
  "scripts": {
    "dev": "tsup src/index.ts --format esm,cjs --dts --watch",
    "build": "tsup src/index.ts --format esm,cjs --dts --minify",
    "lint": "eslint src/",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage"
  }
}