-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 944 Bytes
/
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
{
"type": "module",
"name": "booba",
"version": "0.0.19",
"description": "osu! helper library and api wrapper",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"scripts": {
"build": "rm -rf ./dist && npx rollup -c",
"test": "npx mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LeaPhant/booba.git"
},
"keywords": [
"osu",
"js",
"performance points",
"pp",
"beatmaps",
"all modes"
],
"author": "LeaPhant",
"license": "MIT",
"bugs": {
"url": "https://github.com/LeaPhant/booba/issues"
},
"homepage": "https://github.com/LeaPhant/booba#readme",
"devDependencies": {
"chai": "^4.3.4",
"chai-stats": "^0.3.0",
"dotenv": "^10.0.0",
"mocha": "^9.1.3",
"rollup": "^2.59.0"
},
"dependencies": {
"node-fetch": "^2.6.6"
}
}