UNPKG

reaper-osc

Version:
59 lines (58 loc) 1.55 kB
{ "name": "reaper-osc", "version": "0.9.0", "description": "Controls Cockos Reaper using OSC", "main": "./dist/index.js", "repository": "https://github.com/LykaiosNZ/reaper-osc.js", "author": "Ben Simpson", "license": "MIT", "keywords": [ "reaper", "osc", "daw", "sound", "control", "surface", "logic" ], "dependencies": { "osc": "^2.4.1", "ste-signals": "^2.1.7", "ste-simple-events": "^2.1.7" }, "devDependencies": { "@babel/core": "^7.14.3", "@babel/preset-env": "^7.14.4", "@babel/preset-typescript": "^7.13.0", "@tsconfig/node12": "^1.0.7", "@types/jest": "^26.0.23", "@types/node": "^15.0.3", "@typescript-eslint/eslint-plugin": "^4.23.0", "@typescript-eslint/parser": "^4.23.0", "babel-jest": "^27.0.2", "eslint": "^7.26.0", "jest": "^27.0.4", "prettier": "^2.3.0", "semantic-release": "^25.0.3", "tinybench": "^6.0.0", "tsc-watch": "^4.2.9", "tsx": "^4.21.0", "typedoc": "^0.20.36", "typedoc-neo-theme": "^1.1.1", "typescript": "^4.2.4" }, "scripts": { "bench": "tsx benchmarks/index.ts", "build": "rm -rf dist && tsc", "watch": "tsc -w", "docs": "typedoc --options ./typedoc.json", "run": "rm -rf dist && tsc && node .", "test": "rm -rf dist && tsc && jest", "test:integration": "tsc && jest --config jest.integration.config.js --runInBand", "checkFormatting": "prettier --check ./src", "format": "prettier --write ./src" }, "files": [ "./dist" ] }