This repository has been archived by the owner on Sep 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
67 lines (67 loc) · 1.79 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
64
65
66
67
{
"name": "solarstats",
"version": "1.0.0-dev",
"description": "Official SolarTweaks Stats proxy",
"main": "build/index.js",
"bin": "build/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"debug": "nodemon . --skipUpdater --noTracking --noTray",
"generateConfigSchema": "typescript-json-schema src/Types.ts Config",
"clean": "node ./scripts/clean.js",
"build": "npm run clean && node ./scripts/build.js",
"start": "node ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Solar-Tweaks/SolarStats.git"
},
"keywords": [
"proxy",
"minecraft",
"solarstats"
],
"author": "RichardDorian",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Solar-Tweaks/SolarStats/issues"
},
"homepage": "https://github.com/Solar-Tweaks/SolarStats#readme",
"dependencies": {
"@minecraft-js/chat": "^1.0.0",
"@minecraft-js/lunarbukkitapi": "^1.1.3",
"axios": "^0.26.0",
"chalk": "^4.1.2",
"hypixel-api-reborn": "^10.0.0",
"jsonschema": "^1.4.0",
"minecraft-protocol": "^1.32.0",
"node-downloader-helper": "^2.1.0",
"nodemon": "^2.0.19",
"prismarine-proxy": "^1.1.1",
"systray": "^1.0.5",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/node": "^17.0.5",
"@types/node-fetch": "^2.6.2",
"@types/uuid": "^8.3.4",
"javascript-obfuscator": "^4.0.0",
"pkg": "^5.5.2",
"typed-emitter": "^1.4.0",
"typescript": "^4.5.4",
"typescript-json-schema": "^0.53.0"
},
"pkg": {
"scripts": "build/**/*.js",
"assets": [
"node_modules/minecraft-packets/minecraft-packets/data/pc/1.8",
"assets",
"build/player/modules",
"package.json"
],
"targets": [
"node16-win-x64"
],
"outputPath": "dist/"
}
}