-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.21 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
57
58
{
"name": "manacube",
"version": "1.2.8",
"description": "A typescript npm packages to interact with the mana api",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"publishConfig": {
"access": "public"
},
"files": [
"lib/**/*"
],
"keywords": [
"mana",
"cube",
"manacube",
"manacubeapi",
"Mana Cube",
"Mana Cube API",
"Mana Cube API Client",
"Mana Cube API Client Library",
"Mana Cube API Client Library for Node.js",
"Mana Cube API Client Library for TypeScript",
"Mana Cube API Client Library for TypeScript and Node.js",
"Mana Cube API Client Library for TypeScript and Node.js (manacube-api)",
"api",
"minecraft",
"server",
"client",
"NodeJs",
"TypeScript"
],
"repository": {
"type": "git",
"url": "https://github.com/nick22985/ManacubeApi"
},
"scripts": {
"start": "nodemon --exec ts-node src/index.ts",
"build": "tsc",
"test": "jest"
},
"author": "nick22985",
"license": "MIT",
"dependencies": {
"axios": "^1.4.0",
"manacube": "^1.2.4",
"qs": "^6.11.2"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/node": "^20.3.2",
"dotenv": "^16.3.1",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}