-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 2.93 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 2.93 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
{
"name": "xe-launcher-monorepo",
"version": "0.2.16",
"description": "Xe Launcher monorepo - Part of the Xenon project by Agent54",
"private": true,
"type": "module",
"workspaces": [
"apps/*",
"plugins/*/guest-js",
"packages/*"
],
"scripts": {
"postinstall": "bun manage-sidecars download && bun manage-sidecars sync",
"dev": "bun run --filter '@agent54/desktop' dev",
"dev:settings": "cd apps/desktop && bun run tauri dev -- --no-default-features --features plugin-settings",
"dev:system-info": "cd apps/desktop && bun run tauri dev -- --no-default-features --features plugin-system-info",
"dev:chrome-manager": "cd apps/desktop && bun run tauri dev -- --no-default-features --features plugin-chrome-manager",
"dev:bun": "cd apps/desktop && bun run tauri dev -- --no-default-features --features plugin-bun",
"dev:workerd": "cd apps/desktop && bun run tauri dev -- --no-default-features --features plugin-workerd",
"dev:none": "cd apps/desktop && bun run tauri dev -- --no-default-features",
"dev:tauri": "bun run --filter '@agent54/desktop' tauri dev -- --features all-plugins",
"dev:default": "bun run --filter '@agent54/desktop' tauri dev",
"build": "bun run --filter '@agent54/desktop' build",
"build:tauri": "bun run --filter '@agent54/desktop' tauri build",
"clean": "cd apps/desktop/src-tauri && cargo clean && cd ../../.. && rm -rf apps/desktop/.svelte-kit apps/desktop/build",
"clean:build": "bun run clean && bun run build:tauri",
"check": "bun run --filter '*' check",
"create-plugin": "bun scripts/create-plugin.js",
"manage-sidecars": "bash scripts/manage-sidecars.sh",
"dev:mouse-trap": "cd apps/desktop && bun run tauri dev -- --no-default-features --features plugin-mouse-trap",
"plugin:add": "bun scripts/plugin-manager.js add",
"plugin:enable": "bun scripts/plugin-manager.js enable",
"plugin:disable": "bun scripts/plugin-manager.js disable",
"plugin:list": "bun scripts/plugin-manager.js list",
"plugin:sync": "bun scripts/plugin-manager.js sync",
"dev:cloudflare": "cd apps/desktop && bun run tauri dev -- --no-default-features --features plugin-cloudflare",
"dev:deno": "cd apps/desktop && bun run tauri dev -- --no-default-features --features plugin-deno",
"dev:podman": "cd apps/desktop && bun run tauri dev -- --no-default-features --features plugin-podman",
"dev:ollama": "cd apps/desktop && bun run tauri dev -- --no-default-features --features plugin-ollama",
"dev:iwa-tools": "cd apps/desktop && bun run tauri dev -- --no-default-features --features plugin-iwa-tools",
"dev:developer-tools": "cd apps/desktop && bun run tauri dev -- --no-default-features --features plugin-developer-tools",
"dev:darc": "cd apps/desktop && bun run tauri dev -- --no-default-features --features plugin-darc"
},
"devDependencies": {
"@tauri-apps/cli": "^2"
},
"dependencies": {
"@tauri-apps/plugin-autostart": "^2.5.0"
}
}