{
  "name": "picoquery",
  "version": "2.5.0",
  "description": "A small library for parsing and serialisation query strings",
  "main": "lib/main.js",
  "type": "module",
  "files": [
    "lib",
    "!lib/test"
  ],
  "scripts": {
    "build:clean": "premove lib",
    "build": "npm run build:clean && tsc",
    "test": "npm run build && c8 node --test",
    "lint": "npm run lint:format && eslint src",
    "format": "prettier --write src bench",
    "lint:format": "prettier --check src bench",
    "bench:parse": "node ./bench/parse.js",
    "bench:stringify": "node ./bench/stringify.js",
    "prepare": "npm run build"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/43081j/picoquery.git"
  },
  "keywords": [
    "qs",
    "querystring",
    "query",
    "query-string",
    "url"
  ],
  "author": "James Garbutt (https://github.com/43081j)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/43081j/picoquery/issues"
  },
  "homepage": "https://github.com/43081j/picoquery#readme",
  "devDependencies": {
    "@eslint/js": "^9.1.1",
    "@types/node": "^20.12.7",
    "@types/qs": "^6.9.15",
    "c8": "^10.1.2",
    "fast-querystring": "^1.1.2",
    "premove": "^4.0.0",
    "prettier": "^3.2.5",
    "qs": "^6.12.1",
    "tinybench": "^2.8.0",
    "typescript": "^5.4.5",
    "typescript-eslint": "^7.7.1"
  }
}
