{
  "name": "vveb-audio",
  "version": "0.0.1-alpha",
  "author": "Scott Morse",
  "description": "A library on top of the Web Audio API for creating and rendering virtual audio processing graphs",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/ScottMorse/vveb-audio"
  },
  "main": "src/index.ts",
  "scripts": {
    "lint": "npm-run-all lint:eslint lint:format",
    "lint:fix": "npm-run-all lint:eslint:fix lint:format:fix",
    "lint:eslint": "eslint ./src/**/*.{js,ts,jsx,tsx} --no-error-on-unmatched-pattern",
    "lint:eslint:fix": "eslint --fix ./src/**/*.{js,ts,jsx,tsx} --no-error-on-unmatched-pattern",
    "lint:format": "prettier --check ./**/*",
    "lint:format:fix": "prettier --write **/*",
    "lint-staged": "lint-staged",
    "test": "jest --passWithNoTests",
    "test:watch": "jest --watchAll",
    "check-all": "npm-run-all lint test",
    "pre-commit": "npm-run-all lint-staged lint",
    "pre-push": "npm-run-all lint-staged check-all",
    "prepare": "husky install"
  },
  "lint-staged": {
    "**/*": [
      "prettier --write -u"
    ]
  },
  "devDependencies": {
    "@babel/core": "^7.19.1",
    "@babel/preset-env": "^7.19.1",
    "@babel/preset-typescript": "^7.18.6",
    "@types/events": "^3.0.0",
    "@types/jest": "^29.0.3",
    "@types/lodash": "^4.14.185",
    "@typescript-eslint/eslint-plugin": "^5.37.0",
    "eslint": "^8.23.1",
    "eslint-plugin-import": "^2.26.0",
    "eslint-plugin-jest": "^27.0.4",
    "husky": "^8.0.0",
    "jest": "^29.0.3",
    "lint-staged": "^13.0.3",
    "npm-run-all": "^4.1.5",
    "prettier": "^2.7.1",
    "typescript": "^4.8.3"
  },
  "dependencies": {
    "immer": "^9.0.15",
    "lodash": "^4.17.21",
    "nanoid": "^4.0.0"
  }
}
