-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.16 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
{
"name": "osu-play",
"version": "1.0.7",
"description": "Play music from your osu!lazer beatmaps from the terminal.",
"type": "module",
"main": "bin/osu-play.js",
"module": "index.ts",
"types": "dist/index.d.ts",
"files": [
"bin",
"dist",
"src",
"index.ts",
"package.json",
"README.md",
"tsconfig.json",
"LICENSE"
],
"bin": {
"osu-play": "./bin/osu-play.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsup",
"start": "./bin/osu-play.js",
"dev:start": "tsc && ./bin/osu-play.js",
"clean": "rm -rf dist"
},
"author": "KorigamiK",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.8.9",
"@types/prompts": "^2.4.7",
"tsup": "^8.0.2",
"typescript": "^5.2.2"
},
"dependencies": {
"@types/yargs": "^17.0.32",
"prompts": "^2.4.2",
"realm": "^12.2.1",
"yargs": "^17.7.2"
},
"keywords": [
"osu",
"lazer",
"cli",
"music",
"game",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/KorigamiK/osu-play"
},
"bugs": "https://github.com/KorigamiK/osu-play/issues"
}