-
Notifications
You must be signed in to change notification settings - Fork 167
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 2.03 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
{
"name": "@executor-js/desktop",
"version": "1.5.7",
"private": true,
"homepage": "https://github.com/RhysSullivan/executor",
"license": "MIT",
"type": "module",
"main": "./out/main/index.js",
"scripts": {
"predev": "bun run --filter @executor-js/local build",
"dev": "electron-vite dev",
"prebuild": "bun run --filter @executor-js/local build && bun ./scripts/build-sidecar.ts",
"build": "electron-vite build",
"preview": "electron-vite preview",
"package": "electron-builder --config electron-builder.config.ts",
"package:mac": "electron-builder --mac --config electron-builder.config.ts",
"package:win": "electron-builder --win --config electron-builder.config.ts",
"package:linux": "electron-builder --linux --config electron-builder.config.ts",
"test:smoke": "bun ./scripts/smoke-sidecar.ts",
"typecheck": "tsgo --noEmit",
"typecheck:slow": "tsc --noEmit"
},
"dependencies": {
"@sentry/bun": "^10.57.0",
"@sentry/electron": "^7.13.0",
"electron-log": "^5",
"electron-store": "^10",
"electron-updater": "^6",
"electron-window-state": "^5.0.3"
},
"devDependencies": {
"@executor-js/app": "workspace:*",
"@executor-js/local": "workspace:*",
"@executor-js/plugin-desktop-settings": "workspace:*",
"@executor-js/plugin-file-secrets": "workspace:*",
"@executor-js/plugin-graphql": "workspace:*",
"@executor-js/plugin-keychain": "workspace:*",
"@executor-js/plugin-mcp": "workspace:*",
"@executor-js/plugin-onepassword": "workspace:*",
"@executor-js/plugin-openapi": "workspace:*",
"@executor-js/runtime-quickjs": "workspace:*",
"@executor-js/sdk": "workspace:*",
"@jitl/quickjs-wasmfile-release-sync": "catalog:",
"@modelcontextprotocol/sdk": "^1.29.0",
"@types/node": "catalog:",
"@zip.js/zip.js": "^2.8.26",
"bun-types": "catalog:",
"electron": "41.2.1",
"electron-builder": "^26",
"electron-vite": "^5",
"quickjs-emscripten": "catalog:",
"typescript": "catalog:",
"vite": "catalog:"
}
}