{
  "name": "@soundworks/core",
  "version": "5.4.3",
  "description": "Open-source creative coding framework for distributed applications based on Web technologies",
  "collaborators": [
    "Benjamin Matuszewski",
    "Jean-Philippe Lambert",
    "Sébastien Robaszkiewicz",
    "Norbert Schnell"
  ],
  "license": "BSD-3-Clause",
  "publishConfig": {
    "access": "public"
  },
  "type": "module",
  "exports": {
    "./client.js": {
      "module": "./src/client/index.js",
      "node": "./src/client/index.js",
      "types": "./types/client/index.d.ts"
    },
    "./server.js": {
      "node": "./src/server/index.js",
      "types": "./types/server/index.d.ts"
    }
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/collective-soundworks/soundworks.git"
  },
  "bugs": {
    "url": "https://github.com/collective-soundworks/soundworks/issues"
  },
  "homepage": "https://soundworks.dev",
  "keywords": [
    "soundworks",
    "creative-coding",
    "music",
    "full-stack",
    "real-time",
    "distributed-system"
  ],
  "engines": {
    "node": ">=16.0.0"
  },
  "scripts": {
    "doc": "npm run types && rm -rf docs && jsdoc -c .jsdoc --verbose && cp -R misc/assets docs/",
    "lint": "npx eslint src",
    "test": "npx mocha tests/*/*.spec.js",
    "test:ci": "npx mocha tests/*/*.spec.js --ci",
    "test:only": "npx mocha",
    "types": "rm -rf types && tsc",
    "preversion": "npm run lint && npm run test && node ./misc/scripts/generate-version-file.js $npm_new_version && npm run types",
    "postversion": "node ./misc/scripts/check-changelog.js && git commit -am \"$npm_new_version\" --allow-empty"
  },
  "dependencies": {
    "@ircam/sc-utils": "^1.13.0",
    "cancelable-promise": "^4.3.1",
    "chalk": "^5.6.2",
    "fast-deep-equal": "^3.1.3",
    "isomorphic-ws": "^5.0.0",
    "keyv": "^5.6.0",
    "keyv-file": "^5.3.3",
    "lodash": "^4.17.23",
    "pem": "^1.14.8",
    "uuid": "^13.0.0",
    "ws": "^8.19.0"
  },
  "devDependencies": {
    "@ircam/eslint-config": "^2.0.1",
    "@ircam/jsdoc-template": "^1.1.0",
    "chai": "^6.2.2",
    "dotenv": "^17.3.1",
    "eslint": "^10.0.3",
    "jsdoc": "^4.0.5",
    "mocha": "^11.7.5",
    "puppeteer": "^24.39.0",
    "tcp-ping": "^0.1.1",
    "typescript": "^5.9.3"
  },
  "optionalDependencies": {
    "bufferutil": "^4.1.0",
    "utf-8-validate": "^6.0.6"
  }
}
