forked from xenharmonic-devs/ji-lattice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.29 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
{
"name": "ji-lattice",
"version": "0.0.1",
"description": "Algorithms for projecting just intonation and equally tempered scales onto the screen.",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/frostburn"
},
"main": "dist/index",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"test": "vitest",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint",
"doc": "typedoc src/index.ts . --name ji-lattice"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xenharmonic-devs/ji-lattice.git"
},
"keywords": [
"Just",
"Intonation",
"Microtonal",
"Music",
"Projection",
"Lattice",
"Kraig",
"Grady",
"Equal",
"Temperament"
],
"author": "Lumi Pakkanen",
"license": "MIT",
"bugs": {
"url": "https://github.com/xenharmonic-devs/ji-lattice/issues"
},
"homepage": "https://github.com/xenharmonic-devs/ji-lattice#readme",
"devDependencies": {
"@types/node": "20.8.2",
"gts": "^5.2.0",
"typescript": "~5.2.0",
"vitest": "^1.3.0",
"typedoc": "^0.25.8"
},
"dependencies": {
"xen-dev-utils": "^0.2.6"
}
}