-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.49 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 3.49 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "rokdock",
"version": "1.6.2",
"description": "Cross-platform desktop app for Roku development: device discovery, terminal sessions, remote control, sideloading, screenshot capture, automation scripting, and a built-in AI assistant with Gemini, Claude, Codex, and Copilot",
"main": "./out/main/main.js",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"typecheck:e2e": "tsc -p tsconfig.e2e.json --noEmit",
"lint": "eslint .",
"check:prose": "node scripts/check-prose.mjs",
"verify": "npm run typecheck && npm run typecheck:e2e && npm run lint && npm run check:prose && npm run test",
"verify:full": "npm run verify && npm run test:e2e",
"dev": "electron-vite dev",
"dev:docs": "cross-env ROKDOCK_LAUNCH_TOOL=docs electron-vite dev",
"build": "electron-vite build",
"preview": "electron-vite preview",
"generate-icons": "electron --no-sandbox scripts/generate-icons.js",
"predist": "npm run generate-icons && node scripts/generate-launcher-artifacts.cjs && npm run build",
"dist": "npm run predist && electron-builder --win --mac --linux",
"dist:win": "npm run predist && electron-builder --win",
"dist:mac": "npm run predist && electron-builder --mac",
"dist:linux": "npm run predist && electron-builder --linux",
"release": "node scripts/release.js",
"test:e2e": "npm run build && playwright test"
},
"keywords": [
"roku",
"brightscript",
"scenegraph",
"roku-development",
"sideloading",
"terminal",
"debug",
"electron",
"developer-tools",
"ai-assistant",
"gemini",
"claude",
"codex",
"github-copilot",
"anthropic",
"openai"
],
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@codemirror/commands": "6.10.4",
"@codemirror/lang-json": "6.0.2",
"@codemirror/language": "6.12.4",
"@codemirror/lint": "6.9.7",
"@codemirror/search": "6.7.1",
"@codemirror/state": "6.7.1",
"@codemirror/view": "6.43.6",
"@fortawesome/fontawesome-svg-core": "7.3.0",
"@fortawesome/free-solid-svg-icons": "7.3.0",
"@modelcontextprotocol/sdk": "1.29.0",
"electron-store": "11.0.2",
"electron-updater": "6.8.9",
"fast-xml-parser": "5.9.3",
"image-q": "4.0.0",
"js-yaml": "5.2.1",
"mdast-util-from-markdown": "2.0.3",
"mdast-util-to-hast": "13.2.1",
"pngjs": "7.0.0",
"rehype-raw": "7.0.0",
"zod": "4.4.3"
},
"devDependencies": {
"@codemirror/lang-xml": "6.1.0",
"@codemirror/lang-yaml": "6.1.3",
"@codemirror/legacy-modes": "6.5.3",
"@fortawesome/react-fontawesome": "3.3.1",
"@playwright/test": "1.61.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@types/js-yaml": "4.0.9",
"@types/node": "24.13.2",
"@types/pngjs": "6.0.5",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "5.2.0",
"cross-env": "10.1.0",
"electron": "42.7.0",
"electron-builder": "26.15.3",
"electron-vite": "5.0.0",
"eslint": "9.39.4",
"eslint-plugin-check-file": "3.3.1",
"eslint-plugin-react-hooks": "7.1.1",
"jsdom": "29.1.1",
"png-to-ico": "3.0.1",
"react": "19.2.7",
"react-dom": "19.2.7",
"react-markdown": "10.1.0",
"rehype-sanitize": "6.0.0",
"remark-directive": "4.0.0",
"remark-gfm": "4.0.1",
"typescript": "6.0.3",
"typescript-eslint": "8.62.1",
"vite": "7.3.6",
"vitest": "4.1.9",
"zustand": "5.0.14"
}
}