-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.07 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.07 KB
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
{
"name": "papermc-api",
"version": "1.1.5",
"description": "Its a PaperMC Downloads API client for node.js.",
"main": "./dist/main.js",
"author": "veguidev",
"license": "MIT",
"bugs": {
"url": "https://github.com/VeguiDev/papermc-api/issues"
},
"bin": {
"papercli": "./dist/cli/cli.js"
},
"repository": "github:VeguiDev/papermc-api",
"keywords": [
"papermc",
"api-client",
"minecraft",
"download"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "node ./dist/main.js"
},
"files": [
"dist/**/*"
],
"dependencies": {
"axios": "^0.27.2",
"chalk": "^4.1.2",
"commander": "^9.4.0",
"inquirer": "^8.0.0",
"jest": "^28.1.3",
"progress": "^2.0.3"
},
"devDependencies": {
"@types/inquirer": "^9.0.1",
"@types/progress": "^2.0.5",
"mocha": "^10.0.0",
"nodemon": "^2.0.16",
"ts-node": "^10.8.0",
"typescript": "^4.7.2"
}
}