@gui-chat-plugin/music 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -0
- package/package.json +13 -5
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# @gui-chat-plugin/music
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/@gui-chat-plugin/music)
|
|
4
|
+
|
|
3
5
|
MusicXML sheet music plugin for GUI Chat applications. Displays and plays sheet music from MusicXML format.
|
|
4
6
|
|
|
5
7
|
## Features
|
|
@@ -85,6 +87,14 @@ yarn build
|
|
|
85
87
|
yarn lint
|
|
86
88
|
```
|
|
87
89
|
|
|
90
|
+
## Test Prompts
|
|
91
|
+
|
|
92
|
+
Try these prompts to test the plugin:
|
|
93
|
+
|
|
94
|
+
1. "Create sheet music for a simple C major scale"
|
|
95
|
+
2. "Write a short melody in G major"
|
|
96
|
+
3. "Generate sheet music for Twinkle Twinkle Little Star"
|
|
97
|
+
|
|
88
98
|
## License
|
|
89
99
|
|
|
90
100
|
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gui-chat-plugin/music",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"description": "MusicXML sheet music plugin for GUI Chat",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -24,7 +24,9 @@
|
|
|
24
24
|
},
|
|
25
25
|
"./style.css": "./dist/style.css"
|
|
26
26
|
},
|
|
27
|
-
"files": [
|
|
27
|
+
"files": [
|
|
28
|
+
"dist"
|
|
29
|
+
],
|
|
28
30
|
"scripts": {
|
|
29
31
|
"dev": "vite",
|
|
30
32
|
"build": "vite build && vue-tsc -p tsconfig.build.json --emitDeclarationOnly",
|
|
@@ -35,7 +37,7 @@
|
|
|
35
37
|
"vue": "^3.5.0"
|
|
36
38
|
},
|
|
37
39
|
"dependencies": {
|
|
38
|
-
"gui-chat-protocol": "^0.0.
|
|
40
|
+
"gui-chat-protocol": "^0.0.3",
|
|
39
41
|
"opensheetmusicdisplay": "^1.9.3",
|
|
40
42
|
"osmd-audio-player": "^0.7.0"
|
|
41
43
|
},
|
|
@@ -50,10 +52,16 @@
|
|
|
50
52
|
"tailwindcss": "^4.1.18",
|
|
51
53
|
"typescript": "~5.9.3",
|
|
52
54
|
"vite": "^7.3.1",
|
|
53
|
-
"vue": "^3.5.
|
|
55
|
+
"vue": "^3.5.27",
|
|
54
56
|
"vue-eslint-parser": "^10.2.0",
|
|
55
57
|
"vue-tsc": "^3.2.2"
|
|
56
58
|
},
|
|
57
|
-
"keywords": [
|
|
59
|
+
"keywords": [
|
|
60
|
+
"guichat",
|
|
61
|
+
"plugin",
|
|
62
|
+
"music",
|
|
63
|
+
"musicxml",
|
|
64
|
+
"sheet-music"
|
|
65
|
+
],
|
|
58
66
|
"license": "MIT"
|
|
59
67
|
}
|