-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.37 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
59
{
"name": "temperaments",
"author": "Lumi Pakkanen",
"version": "0.5.3",
"description": "Musical tunings/temperaments for Javascript",
"license": "MIT",
"main": "dist/src/index",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/frostburn"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xenharmonic-devs/temperaments.git"
},
"bugs": {
"url": "https://github.com/xenharmonic-devs/temperaments/issues"
},
"homepage": "https://github.com/xenharmonic-devs/temperaments#readme",
"keywords": [
"Microtonal",
"Music",
"Xenharmonic",
"Temperament",
"Tuning",
"Color Notation",
"Math",
"Geometric Algebra",
"Clifford Algebra"
],
"files": [
"dist"
],
"types": "dist/src/index.d.ts",
"devDependencies": {
"@types/node": "^20.11.23",
"gts": "^5.2.0",
"typedoc": "^0.25.9",
"typescript": "^5.3.3",
"vitest": "^1.3.1"
},
"scripts": {
"build": "npm run compile",
"compile": "tsc",
"lint": "gts lint",
"clean": "gts clean",
"fix": "gts fix",
"prepare": "npm run build",
"pretest": "npm run build",
"posttest": "npm run lint",
"test": "vitest",
"doc": "typedoc src/index.ts . --name temperaments"
},
"dependencies": {
"mathjs": "^12.4.0",
"ts-geometric-algebra": "^0.5.1",
"xen-dev-utils": "^0.2.7"
}
}