-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.47 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
{
"name": "@kionell/osu-pp-calculator",
"version": "4.0.0",
"description": "Reimplementation of original osu-tools written in TypeScript",
"exports": {
"import": "./lib/index.mjs",
"require": "./lib/index.cjs"
},
"types": "./lib/index.d.ts",
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c && npm run format",
"test": "jest --verbose --passWithNoTests",
"fix": "eslint --fix ./src",
"format": "eslint --fix ./lib/** --no-ignore",
"prepublishOnly": "npm run build",
"docs": "npx typedoc src/index.ts"
},
"author": "Kionell",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-typescript": "^8.3.2",
"@types/md5": "^2.3.2",
"@types/node": "^17.0.31",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"eslint": "^8.14.0",
"eslint-plugin-import": "^2.26.0",
"rollup": "^2.71.1",
"rollup-plugin-dts": "^4.2.1",
"rollup-plugin-node-externals": "^4.0.0",
"rollup-plugin-typescript-paths": "^1.3.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.0",
"typedoc": "^0.22.6",
"typedoc-plugin-missing-exports": "^1.0.0",
"typescript": "^4.6.4"
},
"peerDependencies": {
"osu-catch-stable": "^4.0.0",
"osu-classes": "^3.0.1",
"osu-downloader": "^0.8.1",
"osu-mania-stable": "^5.0.0",
"osu-parsers": "^4.1.4",
"osu-standard-stable": "^5.0.0",
"osu-taiko-stable": "^5.0.0"
}
}