-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.37 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.37 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
{
"name": "ddex-json-codec",
"type": "module",
"version": "0.4.2",
"description": "DDEX ERN XML ↔ JSON converter for TypeScript",
"license": "MIT",
"author": "kazhs",
"repository": {
"type": "git",
"url": "https://github.com/kazhs/ddex-json-codec.git"
},
"bugs": {
"url": "https://github.com/kazhs/ddex-json-codec/issues"
},
"homepage": "https://github.com/kazhs/ddex-json-codec#readme",
"keywords": [
"ddex",
"ern",
"xml",
"json",
"music",
"metadata",
"converter",
"codec"
],
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"types": "./dist/index.d.mts",
"files": [
"dist"
],
"scripts": {
"build": "vp pack",
"dev": "vp pack --watch",
"test": "vp test",
"check": "vp check",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"fast-xml-parser": "^5.3.0"
},
"devDependencies": {
"@types/node": "^25.3.5",
"@typescript/native-preview": "7.0.0-dev.20260309.1",
"bumpp": "^10.4.1",
"typescript": "^5.9.3",
"vitest": "npm:@voidzero-dev/vite-plus-test@latest",
"vite-plus": "latest"
},
"pnpm": {
"overrides": {
"vite": "npm:@voidzero-dev/vite-plus-core@latest",
"vitest": "npm:@voidzero-dev/vite-plus-test@latest"
}
},
"packageManager": "pnpm@10.32.1",
"engines": {
"node": ">=20"
}
}