{
  "name": "spotify-uri",
  "description": "Parse the various Spotify URI formats into Objects and back",
  "homepage": "https://github.com/TooTallNate/spotify-uri#readme",
  "version": "4.1.0",
  "types": "./dist/index.d.ts",
  "main": "./dist/index.js",
  "exports": {
    "import": "./dist/index.mjs",
    "require": "./dist/index.js",
    "types": "./dist/index.d.ts"
  },
  "module": "./dist/index.mjs",
  "author": {
    "email": "nathan@tootallnate.net",
    "name": "Nathan Rajlich",
    "url": "http://n8.io/"
  },
  "contributors": [
    {
      "name": "Kiko Beats",
      "email": "josefrancisco.verdu@gmail.com"
    },
    {
      "name": "Stefan Duberg",
      "email": "stefanduberg@me.com"
    },
    {
      "name": "PawsOfDestruction",
      "email": "74069208+PawsOfDestruction@users.noreply.github.com"
    },
    {
      "name": "Enzo Ferey",
      "email": "hello@enzoferey.com"
    },
    {
      "name": "Jacob Morrison",
      "email": "jake.morrison24@gmail.com"
    },
    {
      "name": "Lioness100",
      "email": "jchickmm2@gmail.com"
    },
    {
      "name": "Karl Sander",
      "email": "kall@kall.ws"
    },
    {
      "name": "Marwan Zibaoui",
      "email": "marwan.zibaoui@gmail.com"
    },
    {
      "name": "Miraculous Owonubi",
      "email": "omiraculous@gmail.com"
    },
    {
      "name": "Shem Magnezi",
      "email": "smagnezi8@gmail.com"
    }
  ],
  "repository": {
    "type": "git",
    "url": "git://github.com/TooTallNate/spotify-uri.git"
  },
  "bugs": {
    "url": "https://github.com/TooTallNate/spotify-uri/issues"
  },
  "keywords": [
    "album",
    "artist",
    "embed",
    "episode",
    "parse",
    "playlist",
    "search",
    "spotify",
    "track",
    "uri",
    "url",
    "user"
  ],
  "devDependencies": {
    "@types/node": "16",
    "mocha": "latest",
    "standard-version": "latest",
    "ts-standard": "latest",
    "tsup": "latest",
    "typescript": "latest"
  },
  "engines": {
    "node": ">= 16"
  },
  "files": [
    "dist"
  ],
  "license": "MIT",
  "scripts": {
    "build": "tsup src/index.ts --format esm,cjs --dts",
    "prebuild": "rm -rf dist",
    "prerelease": "npm run test",
    "pretest": "npm run build",
    "release": "standard-version && git push --follow-tags origin next && npm publish && gh release create --generate-notes $(git describe --tags --abbrev=0)",
    "test": "mocha",
    "test-lint": "ts-standard"
  }
}