-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.33 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
{
"name": "xen-dev-utils",
"author": "Lumi Pakkanen",
"version": "0.11.1",
"description": "Utility functions used by the Scale Workshop ecosystem",
"license": "MIT",
"main": "dist/index",
"repository": {
"type": "git",
"url": "git+https://github.com/xenharmonic-devs/xen-dev-utils.git"
},
"bugs": {
"url": "https://github.com/xenharmonic-devs/xen-dev-utils/issues"
},
"homepage": "https://github.com/xenharmonic-devs/xen-dev-utils#readme",
"keywords": [
"Microtonal",
"Music",
"Xenharmonic"
],
"funding": {
"type": "github",
"url": "https://github.com/sponsors/frostburn"
},
"files": [
"dist"
],
"types": "dist/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",
"fuzz": "FUZZ=1 vitest",
"compile-legacy": "tsc -p tsconfig-legacy.json",
"prebench": "npm run compile && npm run compile-legacy",
"bench": "vitest bench",
"doc": "typedoc src/index.ts . --name xen-dev-utils"
},
"engines": {
"node": ">=10.6.0"
}
}