{
  "name": "@catamphetamine/id3js",
  "version": "1.0.2",
  "author": {
    "name": "James Garbutt",
    "url": "https://github.com/43081j"
  },
  "contributors": [
    {
      "name": "Nikolay Kuchumov",
      "url": "https://github.com/catamphetamine"
    }
  ],
  "description": "A modern ID3 parser written completely in JavaScript, making use of typed arrays and the HTML5 File API",
  "type": "module",
  "exports": {
    "./node": {
      "types": "./lib/exports/node.d.ts",
      "default": "./lib/exports/node.js"
    },
    "./browser": {
      "types": "./lib/exports/browser.d.ts",
      "default": "./lib/exports/browser.js"
    },
    "./package.json": "./package.json"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/catamphetamine/id3.git"
  },
  "keywords": [
    "id3",
    "mp3",
    "parser"
  ],
  "files": [
    "lib/**/*.js",
    "lib/**/*.d.ts"
  ],
  "license": "MIT",
  "devDependencies": {
    "@types/node": "^14.14.37",
    "@typescript-eslint/eslint-plugin": "^4.20.0",
    "@typescript-eslint/parser": "^4.20.0",
    "eslint": "^7.23.0",
    "eslint-config-google": "^0.14.0",
    "prettier": "^2.2.1",
    "rimraf": "^3.0.2",
    "typescript": "^4.2.3"
  },
  "scripts": {
    "clean": "rimraf ./lib",
    "prebuild": "npm run clean",
    "lint": "eslint \"src/**/*.ts\"",
    "lint-fix": "npm run lint -- --fix",
    "build": "npm run lint-fix && tsc",
    "prepare": "npm run build",
    "prepublishOnly": "npm run lint",
    "format": "prettier --write \"src/**/*.ts\""
  },
  "dependencies": {
    "node-fetch": "^3.3.1"
  }
}
