musicxml-io 0.1.0
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/LICENSE +21 -0
- package/README.md +167 -0
- package/dist/accessors/index.d.mts +82 -0
- package/dist/accessors/index.d.ts +82 -0
- package/dist/accessors/index.js +239 -0
- package/dist/accessors/index.js.map +1 -0
- package/dist/accessors/index.mjs +198 -0
- package/dist/accessors/index.mjs.map +1 -0
- package/dist/index.d.mts +285 -0
- package/dist/index.d.ts +285 -0
- package/dist/index.js +6033 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +5932 -0
- package/dist/index.mjs.map +1 -0
- package/dist/operations/index.d.mts +92 -0
- package/dist/operations/index.d.ts +92 -0
- package/dist/operations/index.js +352 -0
- package/dist/operations/index.js.map +1 -0
- package/dist/operations/index.mjs +315 -0
- package/dist/operations/index.mjs.map +1 -0
- package/dist/query/index.d.mts +103 -0
- package/dist/query/index.d.ts +103 -0
- package/dist/query/index.js +272 -0
- package/dist/query/index.js.map +1 -0
- package/dist/query/index.mjs +232 -0
- package/dist/query/index.mjs.map +1 -0
- package/dist/types-DC_TnJu_.d.mts +797 -0
- package/dist/types-DC_TnJu_.d.ts +797 -0
- package/package.json +80 -0
package/package.json
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "musicxml-io",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Parse and serialize MusicXML (.xml/.mxl) with high round-trip fidelity",
|
|
5
|
+
"author": "tan-z-tan",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/tan-z-tan/musicxml-io.git"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://github.com/tan-z-tan/musicxml-io#readme",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/tan-z-tan/musicxml-io/issues"
|
|
14
|
+
},
|
|
15
|
+
"engines": {
|
|
16
|
+
"node": ">=18.0.0"
|
|
17
|
+
},
|
|
18
|
+
"main": "dist/index.js",
|
|
19
|
+
"module": "dist/index.mjs",
|
|
20
|
+
"types": "dist/index.d.ts",
|
|
21
|
+
"exports": {
|
|
22
|
+
".": {
|
|
23
|
+
"types": "./dist/index.d.ts",
|
|
24
|
+
"import": "./dist/index.mjs",
|
|
25
|
+
"require": "./dist/index.js"
|
|
26
|
+
},
|
|
27
|
+
"./accessors": {
|
|
28
|
+
"types": "./dist/accessors/index.d.ts",
|
|
29
|
+
"import": "./dist/accessors/index.mjs",
|
|
30
|
+
"require": "./dist/accessors/index.js"
|
|
31
|
+
},
|
|
32
|
+
"./operations": {
|
|
33
|
+
"types": "./dist/operations/index.d.ts",
|
|
34
|
+
"import": "./dist/operations/index.mjs",
|
|
35
|
+
"require": "./dist/operations/index.js"
|
|
36
|
+
},
|
|
37
|
+
"./query": {
|
|
38
|
+
"types": "./dist/query/index.d.ts",
|
|
39
|
+
"import": "./dist/query/index.mjs",
|
|
40
|
+
"require": "./dist/query/index.js"
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"scripts": {
|
|
44
|
+
"build": "tsup",
|
|
45
|
+
"test": "vitest run",
|
|
46
|
+
"test:watch": "vitest",
|
|
47
|
+
"lint": "eslint src --ext .ts",
|
|
48
|
+
"typecheck": "tsc --noEmit",
|
|
49
|
+
"prepublishOnly": "npm run build && npm run test",
|
|
50
|
+
"coverage:roundtrip": "tsx scripts/measure-coverage.ts",
|
|
51
|
+
"diff:roundtrip": "tsx scripts/diff-roundtrip.ts"
|
|
52
|
+
},
|
|
53
|
+
"keywords": [
|
|
54
|
+
"musicxml",
|
|
55
|
+
"music",
|
|
56
|
+
"notation",
|
|
57
|
+
"parser",
|
|
58
|
+
"serializer",
|
|
59
|
+
"typescript",
|
|
60
|
+
"xml",
|
|
61
|
+
"sheet-music",
|
|
62
|
+
"score",
|
|
63
|
+
"midi",
|
|
64
|
+
"mxl"
|
|
65
|
+
],
|
|
66
|
+
"devDependencies": {
|
|
67
|
+
"@types/node": "^20.10.0",
|
|
68
|
+
"tsup": "^8.0.1",
|
|
69
|
+
"tsx": "^4.21.0",
|
|
70
|
+
"typescript": "^5.3.3",
|
|
71
|
+
"vitest": "^1.1.0"
|
|
72
|
+
},
|
|
73
|
+
"dependencies": {
|
|
74
|
+
"fast-xml-parser": "^4.3.2",
|
|
75
|
+
"fflate": "^0.8.2"
|
|
76
|
+
},
|
|
77
|
+
"files": [
|
|
78
|
+
"dist"
|
|
79
|
+
]
|
|
80
|
+
}
|