blockmine 1.16.3 → 1.17.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +27 -0
- package/backend/prisma/migrations/20250723160648_add_bot_sort_order/migration.sql +2 -0
- package/backend/prisma/schema.prisma +229 -228
- package/backend/src/api/routes/bots.js +2144 -1801
- package/backend/src/api/routes/eventGraphs.js +459 -459
- package/backend/src/core/BotManager.js +912 -876
- package/backend/src/core/BotProcess.js +37 -6
- package/backend/src/core/commands/dev.js +20 -0
- package/frontend/dist/assets/index-D3DCCCQP.css +1 -0
- package/frontend/dist/assets/index-UZUhEwz5.js +8347 -0
- package/frontend/dist/index.html +2 -2
- package/frontend/package.json +3 -0
- package/package.json +82 -82
- package/frontend/dist/assets/index-CxCbyhFB.js +0 -8331
- package/frontend/dist/assets/index-_stfadil.css +0 -1
package/frontend/dist/index.html
CHANGED
|
@@ -42,8 +42,8 @@
|
|
|
42
42
|
<meta name="msapplication-TileColor" content="#da532c">
|
|
43
43
|
<meta name="theme-color" content="#ffffff">
|
|
44
44
|
|
|
45
|
-
<script type="module" crossorigin src="/assets/index-
|
|
46
|
-
<link rel="stylesheet" crossorigin href="/assets/index-
|
|
45
|
+
<script type="module" crossorigin src="/assets/index-UZUhEwz5.js"></script>
|
|
46
|
+
<link rel="stylesheet" crossorigin href="/assets/index-D3DCCCQP.css">
|
|
47
47
|
</head>
|
|
48
48
|
<body>
|
|
49
49
|
<div id="root"></div>
|
package/frontend/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,82 +1,82 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "blockmine",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "Мощная панель управления ботами для Майнкрафта.",
|
|
5
|
-
"author": "merka",
|
|
6
|
-
"license": "MIT",
|
|
7
|
-
"repository": {
|
|
8
|
-
"type": "git",
|
|
9
|
-
"url": "git+https://github.com/blockmineJS/blockmine.git"
|
|
10
|
-
},
|
|
11
|
-
"bin": {
|
|
12
|
-
"blockmine": "backend/cli.js"
|
|
13
|
-
},
|
|
14
|
-
"keywords": [
|
|
15
|
-
"minecraft",
|
|
16
|
-
"bot",
|
|
17
|
-
"mineflayer",
|
|
18
|
-
"dashboard",
|
|
19
|
-
"panel",
|
|
20
|
-
"automation"
|
|
21
|
-
],
|
|
22
|
-
"workspaces": [
|
|
23
|
-
"backend",
|
|
24
|
-
"frontend"
|
|
25
|
-
],
|
|
26
|
-
"scripts": {
|
|
27
|
-
"dev": "concurrently \"npm run dev --workspace=backend\" \"npm run dev --workspace=frontend\"",
|
|
28
|
-
"postinstall": "npm install --workspace=frontend --ignore-scripts && prisma generate --schema=./backend/prisma/schema.prisma",
|
|
29
|
-
"build": "npm run build --workspace=frontend",
|
|
30
|
-
"prepublishOnly": "npm run build",
|
|
31
|
-
"prepare": "husky",
|
|
32
|
-
"release": "standard-version",
|
|
33
|
-
"release:minor": "standard-version --release-as minor",
|
|
34
|
-
"release:patch": "standard-version --release-as patch",
|
|
35
|
-
"release:major": "standard-version --release-as major"
|
|
36
|
-
},
|
|
37
|
-
"dependencies": {
|
|
38
|
-
"@monaco-editor/react": "^4.7.0",
|
|
39
|
-
"@prisma/client": "^5.14.0",
|
|
40
|
-
"@radix-ui/react-icons": "^1.3.2",
|
|
41
|
-
"adm-zip": "^0.5.16",
|
|
42
|
-
"archiver": "^7.0.1",
|
|
43
|
-
"bcryptjs": "^2.4.3",
|
|
44
|
-
"cmdk": "^1.1.1",
|
|
45
|
-
"cron-parser": "^5.3.0",
|
|
46
|
-
"express": "^4.19.2",
|
|
47
|
-
"express-validator": "^7.2.1",
|
|
48
|
-
"framer-motion": "^12.19.2",
|
|
49
|
-
"fs-extra": "^11.3.0",
|
|
50
|
-
"iconv-lite": "^0.6.3",
|
|
51
|
-
"jsonwebtoken": "^9.0.2",
|
|
52
|
-
"mineflayer": "^4.20.1",
|
|
53
|
-
"monaco-editor": "^0.52.2",
|
|
54
|
-
"multer": "^2.0.1",
|
|
55
|
-
"node-cron": "^4.1.0",
|
|
56
|
-
"openrouter-kit": "^0.1.65",
|
|
57
|
-
"pidusage": "^3.0.2",
|
|
58
|
-
"pino": "^9.7.0",
|
|
59
|
-
"pino-pretty": "^13.0.0",
|
|
60
|
-
"prisma": "^5.14.0",
|
|
61
|
-
"react-textarea-autosize": "^8.5.9",
|
|
62
|
-
"react-virtualized-auto-sizer": "^1.0.26",
|
|
63
|
-
"semver": "^7.6.2",
|
|
64
|
-
"slugify": "^1.6.6",
|
|
65
|
-
"socket.io": "^4.7.5",
|
|
66
|
-
"socks": "^2.8.5",
|
|
67
|
-
"sonner": "^2.0.5",
|
|
68
|
-
"systeminformation": "^5.27.7"
|
|
69
|
-
},
|
|
70
|
-
"devDependencies": {
|
|
71
|
-
"@commitlint/cli": "^19.8.1",
|
|
72
|
-
"@commitlint/config-conventional": "^19.8.1",
|
|
73
|
-
"concurrently": "^8.2.2",
|
|
74
|
-
"husky": "^9.1.7",
|
|
75
|
-
"standard-version": "^9.5.0"
|
|
76
|
-
},
|
|
77
|
-
"commitlint": {
|
|
78
|
-
"extends": [
|
|
79
|
-
"@commitlint/config-conventional"
|
|
80
|
-
]
|
|
81
|
-
}
|
|
82
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "blockmine",
|
|
3
|
+
"version": "1.17.1",
|
|
4
|
+
"description": "Мощная панель управления ботами для Майнкрафта.",
|
|
5
|
+
"author": "merka",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/blockmineJS/blockmine.git"
|
|
10
|
+
},
|
|
11
|
+
"bin": {
|
|
12
|
+
"blockmine": "backend/cli.js"
|
|
13
|
+
},
|
|
14
|
+
"keywords": [
|
|
15
|
+
"minecraft",
|
|
16
|
+
"bot",
|
|
17
|
+
"mineflayer",
|
|
18
|
+
"dashboard",
|
|
19
|
+
"panel",
|
|
20
|
+
"automation"
|
|
21
|
+
],
|
|
22
|
+
"workspaces": [
|
|
23
|
+
"backend",
|
|
24
|
+
"frontend"
|
|
25
|
+
],
|
|
26
|
+
"scripts": {
|
|
27
|
+
"dev": "concurrently \"npm run dev --workspace=backend\" \"npm run dev --workspace=frontend\"",
|
|
28
|
+
"postinstall": "npm install --workspace=frontend --ignore-scripts && prisma generate --schema=./backend/prisma/schema.prisma",
|
|
29
|
+
"build": "npm run build --workspace=frontend",
|
|
30
|
+
"prepublishOnly": "npm run build",
|
|
31
|
+
"prepare": "husky",
|
|
32
|
+
"release": "standard-version",
|
|
33
|
+
"release:minor": "standard-version --release-as minor",
|
|
34
|
+
"release:patch": "standard-version --release-as patch",
|
|
35
|
+
"release:major": "standard-version --release-as major"
|
|
36
|
+
},
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"@monaco-editor/react": "^4.7.0",
|
|
39
|
+
"@prisma/client": "^5.14.0",
|
|
40
|
+
"@radix-ui/react-icons": "^1.3.2",
|
|
41
|
+
"adm-zip": "^0.5.16",
|
|
42
|
+
"archiver": "^7.0.1",
|
|
43
|
+
"bcryptjs": "^2.4.3",
|
|
44
|
+
"cmdk": "^1.1.1",
|
|
45
|
+
"cron-parser": "^5.3.0",
|
|
46
|
+
"express": "^4.19.2",
|
|
47
|
+
"express-validator": "^7.2.1",
|
|
48
|
+
"framer-motion": "^12.19.2",
|
|
49
|
+
"fs-extra": "^11.3.0",
|
|
50
|
+
"iconv-lite": "^0.6.3",
|
|
51
|
+
"jsonwebtoken": "^9.0.2",
|
|
52
|
+
"mineflayer": "^4.20.1",
|
|
53
|
+
"monaco-editor": "^0.52.2",
|
|
54
|
+
"multer": "^2.0.1",
|
|
55
|
+
"node-cron": "^4.1.0",
|
|
56
|
+
"openrouter-kit": "^0.1.65",
|
|
57
|
+
"pidusage": "^3.0.2",
|
|
58
|
+
"pino": "^9.7.0",
|
|
59
|
+
"pino-pretty": "^13.0.0",
|
|
60
|
+
"prisma": "^5.14.0",
|
|
61
|
+
"react-textarea-autosize": "^8.5.9",
|
|
62
|
+
"react-virtualized-auto-sizer": "^1.0.26",
|
|
63
|
+
"semver": "^7.6.2",
|
|
64
|
+
"slugify": "^1.6.6",
|
|
65
|
+
"socket.io": "^4.7.5",
|
|
66
|
+
"socks": "^2.8.5",
|
|
67
|
+
"sonner": "^2.0.5",
|
|
68
|
+
"systeminformation": "^5.27.7"
|
|
69
|
+
},
|
|
70
|
+
"devDependencies": {
|
|
71
|
+
"@commitlint/cli": "^19.8.1",
|
|
72
|
+
"@commitlint/config-conventional": "^19.8.1",
|
|
73
|
+
"concurrently": "^8.2.2",
|
|
74
|
+
"husky": "^9.1.7",
|
|
75
|
+
"standard-version": "^9.5.0"
|
|
76
|
+
},
|
|
77
|
+
"commitlint": {
|
|
78
|
+
"extends": [
|
|
79
|
+
"@commitlint/config-conventional"
|
|
80
|
+
]
|
|
81
|
+
}
|
|
82
|
+
}
|