-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.14 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.14 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
{
"name": "mania-svg",
"version": "0.4.5",
"description": "A TypeScript library for rendering osu!mania beatmaps to SVG format with vertical strip layout.",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/zzzzv/mania-svg",
"repository": {
"type": "git",
"url": "git+https://github.com/zzzzv/mania-svg.git"
},
"author": "zzzzv",
"keywords": [
"osu",
"mania",
"svg",
"beatmap"
],
"files": [
"dist",
"README.md"
],
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
}
},
"scripts": {
"build": "tsdown",
"test": "vitest",
"typecheck": "tsc --noEmit",
"update-readme": "node scripts/update-readme.js",
"prepare": "husky"
},
"devDependencies": {
"@types/lodash-es": "^4.17.12",
"@types/node": "^24.10.0",
"husky": "^9.1.7",
"osu-classes": "^3.2.0-beta.0",
"osu-mania-stable": "^5.0.1",
"osu-parsers": "^4.2.0-beta.0",
"tsdown": "^0.16.0",
"typescript": "^5.9.3",
"vitest": "^4.0.7"
}
}