-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.5 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.5 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "manacube",
"version": "1.2.19",
"description": "A typescript npm packages to interact with the mana api",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"publishConfig": {
"access": "public"
},
"files": [
"dist/**/*"
],
"keywords": [
"mana",
"cube",
"manacube",
"manacubeapi",
"Mana Cube",
"Mana Cube 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": "tsup",
"test": "jest",
"prepublishOnly": "npm run build && npm test",
"release": "npm version patch && git push && git push --tags && npm publish",
"release:minor": "npm version minor && git push && git push --tags && npm publish",
"release:major": "npm version major && git push && git push --tags && npm publish"
},
"author": "nick22985",
"license": "MIT",
"dependencies": {
"axios": "^1.11.0",
"debug": "^4.4.1",
"qs": "^6.14.0",
"zod": "^4.0.14"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/jest": "^30.0.0",
"@types/node": "^24.1.0",
"axios-mock-adapter": "^2.1.0",
"dotenv": "^17.2.1",
"jest": "^30.0.5",
"nodemon": "^3.1.10",
"ts-node": "^10.9.2",
"tsup": "^8.5.0",
"typescript": "^5.9.2"
}
}