{
  "name": "ableton-js",
  "version": "4.1.0",
  "description": "Control Ableton Live from Node",
  "type": "module",
  "exports": {
    ".": {
      "types": "./index.d.ts",
      "default": "./index.js"
    },
    "./ns/*": "./ns/*.js",
    "./util/*": "./util/*.js"
  },
  "typesVersions": {
    "*": {
      "ns/*": [
        "ns/*.d.ts"
      ],
      "util/*": [
        "util/*.d.ts"
      ]
    }
  },
  "author": "Leo Bernard <admin@leolabs.org>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/leolabs/ableton-js.git"
  },
  "engines": {
    "node": ">=20"
  },
  "files": [
    "**/*.js",
    "**/*.d.ts",
    "midi-script/*.py"
  ],
  "scripts": {
    "ableton:clean": "rm -f midi-script/AbletonJS/*.pyc",
    "ableton:copy-script": "set -- ~/Music/Ableton/User\\ Library/Remote\\ Scripts && mkdir -p \"$1\" && rm -rf \"$1/AbletonJS\" && cp -r \"$(pwd)/midi-script\" \"$1/AbletonJS\" && rm -rf \"$1/AbletonJS/_Framework\"",
    "ableton10:launch": "set -- /Applications/Ableton*10* && open \"$1\"",
    "ableton11:launch": "set -- /Applications/Ableton*11* && open \"$1\"",
    "ableton12:launch": "set -- /Applications/Ableton*12* && open \"$1\"",
    "ableton:logs": "tail -n 50 -f ~/Library/Preferences/Ableton/*/Log.txt | grep --line-buffered -i -e AbletonJS",
    "ableton:kill": "pkill -KILL -f \"Ableton Live\"",
    "ableton10:start": "yarn ableton:kill; yarn ableton:clean && yarn ableton:copy-script && yarn ableton10:launch && yarn ableton:logs",
    "ableton11:start": "yarn ableton:kill; yarn ableton:clean && yarn ableton:copy-script && yarn ableton11:launch && yarn ableton:logs",
    "ableton12:start": "yarn ableton:kill; yarn ableton:clean && yarn ableton:copy-script && yarn ableton12:launch && yarn ableton:logs",
    "prepublishOnly": "yarn build",
    "build:doc": "jsdoc2md --files src/**/*.ts --configure ./jsdoc2md.json > ./API.md",
    "version": "node hooks/prepublish.js && git add src/util/package-version.ts && git add midi-script/version.py && auto-changelog -p -l 100 && git add CHANGELOG.md",
    "build": "tsc",
    "test": "vitest --run",
    "format": "prettier -w src/"
  },
  "devDependencies": {
    "@types/lodash": "^4.14.194",
    "@types/node": "^20.3.0",
    "@types/node-uuid": "^0.0.28",
    "@types/semver": "^7.3.6",
    "@types/uuid": "^8.3.0",
    "auto-changelog": "^2.3.0",
    "p-all": "^3",
    "prettier": "^3.3.3",
    "tsx": "^3.12.7",
    "typescript": "^5.1.3",
    "vitest": "^4.0.15"
  },
  "dependencies": {
    "lodash": "^4.17.21",
    "lru-cache": "^7.14.0",
    "p-limit": "^7.2.0",
    "semver": "^7.3.5",
    "uuid": "^8.3.2"
  }
}
