-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (69 loc) · 1.52 KB
/
package.json
File metadata and controls
70 lines (69 loc) · 1.52 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "jazzify",
"version": "1.0.0",
"description": "A rules-based jazz theory engine for chord identification, key detection, and harmonic analysis",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"jazzify": "./cli.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"cli.js",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rollup -c",
"cli": "node cli.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"prepublishOnly": "npm run build && npm run test"
},
"keywords": [
"jazz",
"music",
"theory",
"chord",
"harmony",
"scale",
"midi",
"audio",
"music-theory",
"chord-recognition",
"key-detection",
"harmonic-analysis"
],
"author": "Elijah Melton <98496503+elimelt@users.noreply.github.com>",
"contributors": [
{
"name": "lucainiaoge",
"url": "https://github.com/lucainiaoge"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/elimelt/jazzify-js.git"
},
"homepage": "https://github.com/elimelt/jazzify-js#readme",
"bugs": {
"url": "https://github.com/elimelt/jazzify-js/issues"
},
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"jest": "^29.7.0",
"rollup": "^4.9.0"
},
"type": "module"
}