-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.46 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "moment-of-symmetry",
"author": "Lumi Pakkanen",
"version": "0.8.4",
"description": "Moment of Symmetry (MOS) musical scale generation and analysis for Javascript",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/frostburn"
},
"main": "dist/src/index",
"repository": {
"type": "git",
"url": "git+https://github.com/xenharmonic-devs/moment-of-symmetry.git"
},
"bugs": {
"url": "https://github.com/xenharmonic-devs/moment-of-symmetry/issues"
},
"homepage": "https://github.com/xenharmonic-devs/moment-of-symmetry#readme",
"keywords": [
"Microtonal",
"Music",
"Xenharmonic",
"MOS",
"Moment of Symmetry",
"Musical Scale",
"Scale Generation",
"Scale"
],
"files": [
"dist"
],
"types": "dist/src/index.d.ts",
"devDependencies": {
"@types/node": "^20.17.9",
"gts": "^5.3.1",
"typedoc": "^0.25.13",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"scripts": {
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint",
"test": "vitest",
"doc": "typedoc src/index.ts . --name moment-of-symmetry",
"pretamnams-extension": "npm run compile",
"tamnams-extension": "node dist/scripts/tamnams-extension",
"bench": "vitest bench"
},
"dependencies": {
"xen-dev-utils": "^0.11.1"
}
}