-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.05 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
{
"name": "dsh-midi-plugin",
"version": "0.1.0",
"description": "Persistent DeepSeek Harness bundle: MIDI recognize/edit tools (midi_summary, midi_read, midi_write, midi_transpose, midi_quantize, midi_tempo, midi_chords) over @tonejs/midi.",
"type": "module",
"main": "index.js",
"exports": {
".": "./index.js",
"./midi": "./midi.js",
"./cordis.patch.yml": "./cordis.patch.yml",
"./package.json": "./package.json"
},
"files": [
"index.js",
"midi.js",
"cordis.patch.yml",
"install.mjs",
"plugin.host.js",
"plugin.client.js",
"worker.mjs"
],
"scripts": {
"install:plugin": "node install.mjs"
},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
}
},
"dependencies": {
"@tonejs/midi": "^2.0.28"
},
"peerDependencies": {
"@deepseek-ai/cordis": "^4.0.0",
"@deepseek-ai/dsh-tools": "^0.1.0-rc.0"
},
"peerDependenciesMeta": {
"@deepseek-ai/dsh-tools": {
"optional": true
},
"@deepseek-ai/cordis": {
"optional": true
}
},
"license": "MIT"
}