-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 964 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "@rocketry/examples",
"version": "0.0.0",
"private": true,
"description": "Plugin for Rocketry that enables Web MIDI support",
"homepage": "https://github.com/rocketryjs/examples#readme",
"bugs": {
"url": "https://github.com/rocketryjs/examples/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rocketryjs/examples.git"
},
"license": "MIT",
"author": "Evelyn Hathaway <npm@evelyn.dev> (https://evelyn.dev)",
"main": "./lib/index.js",
"directories": {
"lib": "./lib",
"test": "./test"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc -w"
},
"dependencies": {
"@rocketry/core": "file:../rocketry",
"@rocketry/plugin-node-midi": "file:../plugin-node-midi",
"@rocketry/device-launchpad-mk2": "file:../device-launchpad-mk2",
"lodash": "^4.17.19"
},
"engines": {
"node": ">=8.0.0"
},
"devDependencies": {
"@types/lodash": "^4.14.138"
}
}