-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.62 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
59
60
61
62
63
{
"author": "ayan4m1 <[email protected]>",
"dependencies": {
"varint": "^6.0.0"
},
"description": "Promise-based Minecraft server status",
"devDependencies": {
"@eslint/js": "^9.14.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.14",
"@types/node": "22.8.6",
"@types/varint": "^6.0.3",
"auto-changelog": "^2.5.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import-x": "^4.4.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"rollup": "^4.24.3",
"rollup-plugin-auto-external": "^2.0.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.2"
},
"engines": {
"node": ">=18"
},
"files": [
"lib/"
],
"keywords": [
"minestat",
"minecraft",
"server",
"status",
"checker"
],
"license": "MIT",
"main": "lib/index.cjs",
"module": "lib/index.js",
"name": "minestat-es",
"repository": {
"type": "git",
"url": "git+https://github.com/ayan4m1/minestat-es.git"
},
"scripts": {
"build": "rollup -c --configPlugin typescript",
"develop": "rollup -c -w --configPlugin typescript",
"lint": "eslint ./src/**/*.ts",
"prepack": "rollup -c --configPlugin typescript",
"test": "jest",
"version": "auto-changelog -p -b 10 -l 10 && git add CHANGELOG.md"
},
"type": "module",
"types": "lib/index.d.ts",
"version": "2.2.4"
}