-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.07 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
{
"name": "osu-api-v2-js",
"version": "1.1.0",
"description": "Package to easily access the new api of osu!",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublish": "npm run build",
"build": "tsc",
"test": "npm run build && node ./dist/tests/guest.js",
"test-authenticated": "npm run build && node ./dist/tests/authenticated.js",
"doc": "npx typedoc lib/index.ts --cname osu-v2.taevas.xyz"
},
"engines": {
"node": ">=18.0.0"
},
"author": "Taevas",
"repository": {
"type": "git",
"url": "https://github.com/TTTaevas/osu-api-v2-js.git"
},
"homepage": "https://osu-v2.taevas.xyz/",
"keywords": [
"osu",
"api",
"osu-api",
"v2",
"wrapper",
"api-wrapper",
"lazer"
],
"license": "Unlicense",
"devDependencies": {
"@types/node": "^20.8.10",
"@types/ws": "^8.5.10",
"ajv": "^8.17.1",
"dotenv": "^16.4.5",
"ts-json-schema-generator": "^2.3.0",
"typedoc": "^0.26.10",
"typescript": "~5.3.2"
},
"dependencies": {
"ws": "^8.17.1"
}
}