-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.43 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.43 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
{
"type": "commonjs",
"dependencies": {
"@tonaljs/rhythm-pattern": "^1.0.0",
"tonal": "^6.4.2"
},
"devDependencies": {
"@types/node": "^25.0.10",
"chokidar": "^5.0.0",
"cross-env": "^7.0.3",
"depcheck": "^1.4.7",
"eslint": "^9.0.0",
"ts-morph": "^27.0.2",
"typescript": "^5.9.3"
},
"scripts": {
"main": "node scripts/utils/run-with-log.js pipeline.log node scripts/pipeline/main-pipeline.js",
"render": "bash scripts/render.sh",
"render-lite": "bash scripts/render-lite.sh",
"lab": "node scripts/utils/run-with-log.js lab.log node lab/run.js",
"dashboard": "node scripts/live-dashboard.js",
"replay": "node scripts/trace-replay.js",
"snapshot": "node scripts/pipeline/compare-runs.js --snapshot",
"baseline": "node scripts/pipeline/compare-runs.js --snapshot baseline",
"compare": "node scripts/pipeline/compare-runs.js --against",
"diff": "node scripts/pipeline/diff-compositions.js --against",
"music21-data": "node scripts/utils/run-with-log.js music21.log python scripts/music21/run_music21_data.py",
"lint:raw": "eslint . --ext .js --fix",
"lint": "node scripts/utils/run-with-log.js lint.log npm run lint:raw",
"tc": "node scripts/utils/run-with-log.js tc.log tsc -p . --noEmit",
"test": "node scripts/test/regimeReactiveDampingCore.test.js",
"audit": "npm audit",
"deps:check": "depcheck",
"deps:audit": "npm audit && depcheck"
}
}