-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 850 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
{
"name": "osu-api-v1-js",
"version": "2.1.0",
"description": "Package to easily access osu!api version 1.0",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublish": "yarn run build",
"build": "tsc",
"test": "yarn run build && node ./dist/test.js",
"doc": "npx typedoc lib/index.ts --cname osu-v1.taevas.xyz"
},
"author": "Taevas",
"repository": {
"type": "git",
"url": "https://github.com/TTTaevas/osu-api-v1-js.git"
},
"license": "WTFPL",
"devDependencies": {
"@types/node": "^20.8.10",
"@types/prompt-sync": "^4.2.2",
"ajv": "^8.12.0",
"dotenv": "^16.3.1",
"prompt-sync": "^4.2.0",
"ts-json-schema-generator": "^1.4.0",
"typedoc": "^0.25.3",
"typescript": "^5.2.2"
},
"dependencies": {
"node-fetch": "^3.3.2"
}
}