-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
88 lines (88 loc) · 2.32 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "minepal",
"version": "0.3.8",
"description": "AI minecraft friend",
"type": "module",
"main": "main.js",
"author": "NemosAI",
"license": "MIT",
"dependencies": {
"@supabase/supabase-js": "^2.46.2",
"axios": "^1.7.3",
"cors": "^2.8.5",
"electron-updater": "^6.3.9",
"express": "^4.19.2",
"lowdb": "^7.0.1",
"mic": "^2.1.2",
"minecraft-data": "^3.67.0",
"minecraft-protocol": "file:minecraft-protocol",
"mineflayer": "file:mineflayer",
"mineflayer-armor-manager": "^2.0.1",
"mineflayer-auto-eat": "file:mineflayer-auto-eat",
"mineflayer-collectblock": "file:mineflayer-collectblock",
"mineflayer-pathfinder": "file:mineflayer-pathfinder",
"mineflayer-pvp": "^1.3.2",
"node-global-key-listener": "^0.3.0",
"patch-package": "^8.0.0",
"pidusage": "^3.0.2",
"prismarine-item": "^1.14.0",
"rotating-file-stream": "^3.2.3",
"ws": "^8.18.0",
"yargs": "^17.7.2"
},
"scripts": {
"postinstall": "patch-package",
"start": "electron .",
"clean": "rm -rf dist",
"buildLocal": "npm run clean && electron-builder",
"build:mac": "electron-builder --mac",
"build:win": "electron-builder --win"
},
"devDependencies": {
"@electron/notarize": "^2.3.2",
"electron": "^31.3.1",
"electron-builder": "^24.13.3"
},
"build": {
"appId": "com.nemosai.minepal",
"productName": "Minepal",
"afterSign": "notarize.js",
"directories": {
"buildResources": "build"
},
"files": [
"dist/**/*",
"node_modules/**/*",
"main.js",
"server.js",
"ethan.json",
"src/**/*",
"frontend/dist/**/*",
"bots/**/*",
"mineflayer-pathfinder/**/*",
"!**/node_modules/*/{CHANGELOG.md,README.md,README,readme.md,readme}",
"!**/node_modules/*/{test,__tests__,tests,powered-test,example,examples}",
"!**/node_modules/.bin",
"!**/node_modules/*/package-lock.json"
],
"mac": {
"category": "public.app-category.games",
"icon": "build/icon.icns",
"entitlements": "build/entitlements.plist",
"hardenedRuntime": true,
"target": [
"default"
]
},
"win": {
"target": [
"default"
],
"icon": "build/icon.ico"
},
"linux": {
"target": "AppImage",
"icon": "build"
}
}
}