-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
67 lines (67 loc) · 1.61 KB
/
package.json
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
63
64
65
66
67
{
"name": "osu-parsers",
"version": "4.1.7",
"description": "A bundle of parsers for osu! file formats based on the osu!lazer source code.",
"exports": {
"types": "./lib/index.d.ts",
"node": {
"import": "./lib/node.mjs",
"require": "./lib/node.cjs"
},
"import": "./lib/browser.mjs"
},
"types": "./lib/index.d.ts",
"scripts": {
"build": "rollup -c && npm run format",
"test": "jest --verbose",
"fix": "eslint --fix ./src",
"format": "eslint --fix ./lib/** --no-ignore",
"prepublishOnly": "npm run build",
"docs": "npx typedoc"
},
"keywords": [
"osu",
"beatmap",
"storyboard",
"score",
"replay",
"parser",
"osu!std",
"osu!taiko",
"osu!mania",
"osu!catch",
".osu",
".osb",
".osr"
],
"author": "Kionell",
"repository": {
"type": "git",
"url": "https://github.com/kionell/osu-parsers"
},
"license": "MIT",
"dependencies": {
"lzma-js-simple-v2": "^1.2.3"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"jest": "^29.7.0",
"rollup": "^4.16.4",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-node-externals": "^7.1.1",
"tslib": "^2.6.2",
"typedoc": "^0.25.13",
"typedoc-plugin-missing-exports": "^2.2.0",
"typescript": "^5.4.5"
},
"peerDependencies": {
"osu-classes": "^3.1.0"
}
}