-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 917 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
{
"name": "microtonal-cyclic-polyrhythm-generator",
"version": "1.0.1",
"description": "Generates cyclic polyrhythms with a microtonal set of notes.",
"main": "./src/index.js",
"type": "module",
"scripts": {
"dev": "tsc --watch",
"generate": "npx tsx ./src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PerryRylance/microtonal-cyclic-polyrhythm-generator.git"
},
"keywords": [
"Microtonal",
"MIDI",
"Cyclic",
"Polyrhythm"
],
"author": "Perry Rylance",
"license": "CC-BY-3.0",
"bugs": {
"url": "https://github.com/PerryRylance/microtonal-cyclic-polyrhythm-generator/issues"
},
"homepage": "https://github.com/PerryRylance/microtonal-cyclic-polyrhythm-generator#readme",
"dependencies": {
"@perry-rylance/midi": "^1.1.0",
"@types/node": "^20.4.2"
}
}