-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.25 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
{
"name": "abcts",
"version": "0.0.0",
"description": "Modern TypeScript ABC notation library \u2014 community successor to abcjs",
"license": "MIT",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./renderer": {
"types": "./dist/renderer/index.d.ts",
"import": "./dist/renderer/index.js",
"require": "./dist/renderer/index.cjs"
},
"./compat": {
"types": "./dist/compat/index.d.ts",
"import": "./dist/compat/index.js",
"require": "./dist/compat/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:corpus": "vitest run tests/corpus",
"test:dist": "npm run build && node scripts/zzdist.mjs && MODE=cjs node scripts/zzdist.mjs",
"lint": "biome check ./src ./tests",
"lint:fix": "biome check --write ./src ./tests",
"typecheck": "tsc --noEmit",
"baseline": "ABCTS_SNAPSHOT_RECORD=1 vitest run tests/renderer/baseline.test.ts",
"parity": "node scripts/parity.mjs",
"compare": "node scripts/compare.mjs",
"glyphs": "node scripts/gen-glyphs.mjs",
"glyphs:abcjs": "node scripts/gen-abcjs-glyphs.mjs",
"metrics": "node scripts/gen-text-metrics.mjs",
"harvest": "node scripts/harvest-abcjs-tests.mjs",
"harvest:goldens": "node scripts/harvest-abcjs-goldens.mjs",
"harvest:midi": "node scripts/harvest-abcjs-midi.mjs",
"harvest:audio": "node scripts/harvest-abcjs-audio.mjs",
"gen:audio-controls": "node scripts/gen-audio-controls.mjs",
"harvest:chord-grid": "node scripts/harvest-abcjs-chord-grid.mjs",
"harvest:timing": "node scripts/harvest-abcjs-timing.mjs",
"gen:timing-controls": "node scripts/gen-timing-controls.mjs",
"gen:dom-contract": "node scripts/gen-dom-contract.mjs"
},
"devDependencies": {
"@biomejs/biome": "^2.5.4",
"@types/node": "^26.1.1",
"opentype.js": "^2.0.0",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.1.10"
},
"sideEffects": false,
"bin": {
"abcts": "./dist/cli.js"
}
}