-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 3.64 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 3.64 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "botdeck",
"private": true,
"version": "1.0.0",
"main": "apps/desktop/main.js",
"workspaces": [
"apps/web",
"packages/shared"
],
"scripts": {
"dev": "node scripts/dev.mjs",
"start": "npm run dev",
"postinstall": "node scripts/postinstall.mjs",
"app": "npm run build && node scripts/run-electron.mjs",
"desktop": "npm run app",
"build": "node scripts/run-workspaces.mjs build",
"typecheck": "node scripts/run-workspaces.mjs typecheck",
"build-win": "npm run build && node scripts/prepare-win-runtime.mjs && node scripts/electron-packager.mjs . Botdeck --platform=win32 --arch=x64 --electron-version=42.5.0 --icon=./assets/app-icon.ico --out=release --overwrite --prune=false --no-asar",
"build-lin": "npm run build && node scripts/electron-packager.mjs . Botdeck --platform=linux --arch=x64 --electron-version=42.5.0 --icon=./assets/app-icon.png --out=release --overwrite --prune=false --no-asar && npx rimraf \"release/Botdeck-linux-x64/chrome_100_percent.pak\" \"release/Botdeck-linux-x64/chrome_200_percent.pak\" \"release/Botdeck-linux-x64/LICENSE\" \"release/Botdeck-linux-x64/LICENSES.chromium.html\" \"release/Botdeck-linux-x64/snapshot_blob.bin\" \"release/Botdeck-linux-x64/version\" \"release/Botdeck-linux-x64/vk_swiftshader_icd.json\"",
"build-mac": "npm run build && node scripts/electron-packager.mjs . Botdeck --platform=darwin --arch=x64 --electron-version=42.5.0 --icon=./assets/app-icon.icns --out=release --overwrite --prune=false --no-asar && npx rimraf \"release/Botdeck-darwin-x64/LICENSE\" \"release/Botdeck-darwin-x64/LICENSES.chromium.html\" \"release/Botdeck-darwin-x64/version\"",
"build-all": "npm run build-win && npm run build-lin && npm run build-mac",
"typecheck:unused": "npx tsc -p apps/web/tsconfig.json --noEmit --noUnusedLocals --noUnusedParameters --pretty false && npx tsc -p packages/shared/tsconfig.json --noEmit --noUnusedLocals --noUnusedParameters --pretty false",
"clean": "node scripts/clean.mjs",
"check:static": "node scripts/check.mjs",
"check:secrets": "node scripts/check-secrets.mjs",
"check": "npm run check:secrets && npm run check:deps && npm run lint && npm run check:css && npm run check:static && npm run test && npm run typecheck",
"db:migrate": "npm --prefix apps/web run db:migrate",
"lint": "node scripts/lint.mjs",
"test": "node --test tests/*.test.mjs",
"quality": "npm run check && npm run build",
"release:check": "npm run quality && npm run package:check && npm run audit:prod",
"check:deps": "node scripts/check-dependencies.mjs",
"audit:prod": "npm audit --omit=dev --audit-level=high",
"check:css": "node scripts/check-css.mjs",
"package:check": "node scripts/check-packaging.mjs"
},
"devDependencies": {
"@electron/get": "5.0.0",
"@electron/packager": "20.0.1",
"electron": "42.5.0",
"rimraf": "6.1.3",
"typescript": "5.9.3"
},
"description": "Local desktop app for managing Discord bots, servers, messages, slash commands, permissions, automations and runtime health.",
"keywords": [
"discord",
"discord-bot",
"dashboard",
"bot-management",
"automation",
"slash-commands",
"permissions",
"monitoring",
"electron",
"nextjs",
"typescript"
],
"author": "Macxzew",
"license": "MIT",
"overrides": {
"postcss": "8.5.15",
"@electron/get": {
"undici": "7.28.0"
},
"discord.js": {
"undici": "6.27.0"
},
"@discordjs/rest": {
"undici": "6.27.0"
}
},
"engines": {
"node": ">=22.16.0 <25",
"npm": ">=10 <12"
},
"homepage": "https://github.com/Macxzew/botdeck#readme",
"repository": {
"type": "git",
"url": "https://github.com/Macxzew/botdeck.git"
},
"bugs": {
"url": "https://github.com/Macxzew/botdeck/issues"
}
}