@nutteen/conductor-ui 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,22 @@
1
+ <!doctype html>
2
+ <html lang="en" data-theme="dark">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <!--
6
+ No remote origins: the renderer is a local viewer and must not be able to reach
7
+ the network, so fonts and icons fall back to system faces rather than being
8
+ fetched. `connect-src 'none'` is the load-bearing part.
9
+ -->
10
+ <meta
11
+ http-equiv="Content-Security-Policy"
12
+ content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; font-src 'self'; connect-src 'none'"
13
+ />
14
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
15
+ <title>Conductor Control Room</title>
16
+ <script type="module" crossorigin src="./assets/index-DJ8N8Wk7.js"></script>
17
+ <link rel="stylesheet" crossorigin href="./assets/index-Chkena_6.css">
18
+ </head>
19
+ <body>
20
+ <div id="root"></div>
21
+ </body>
22
+ </html>
package/package.json ADDED
@@ -0,0 +1,54 @@
1
+ {
2
+ "name": "@nutteen/conductor-ui",
3
+ "version": "0.1.0",
4
+ "description": "Conductor Control Room: a desktop viewer for ticket, graph, state and audit log",
5
+ "type": "module",
6
+ "main": "dist/main/index.js",
7
+ "bin": {
8
+ "conductor-ui": "bin/conductor-ui.js"
9
+ },
10
+ "files": [
11
+ "bin",
12
+ "dist/main",
13
+ "dist/preload",
14
+ "dist/renderer"
15
+ ],
16
+ "publishConfig": {
17
+ "access": "public"
18
+ },
19
+ "scripts": {
20
+ "clean": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
21
+ "build": "npm run clean && electron-vite build",
22
+ "dev": "electron-vite dev",
23
+ "start": "electron-vite preview",
24
+ "lint": "eslint .",
25
+ "typecheck": "tsc --noEmit",
26
+ "test": "vitest run",
27
+ "prepublishOnly": "npm run build"
28
+ },
29
+ "dependencies": {
30
+ "@nutteen/conductor": "*",
31
+ "electron": "^44.2.0"
32
+ },
33
+ "devDependencies": {
34
+ "@eslint/js": "^9.39.1",
35
+ "@testing-library/jest-dom": "^6.9.1",
36
+ "@testing-library/react": "^16.3.0",
37
+ "@testing-library/user-event": "^14.6.7",
38
+ "@types/node": "^24.10.1",
39
+ "@types/react": "^19.2.7",
40
+ "@types/react-dom": "^19.2.3",
41
+ "@vitejs/plugin-react": "^5.1.1",
42
+ "electron-vite": "^5.0.0",
43
+ "eslint": "^9.39.1",
44
+ "eslint-plugin-react-hooks": "^7.0.1",
45
+ "globals": "^16.5.0",
46
+ "jsdom": "^27.2.0",
47
+ "react": "^19.2.1",
48
+ "react-dom": "^19.2.1",
49
+ "typescript": "^5.9.3",
50
+ "typescript-eslint": "^8.48.0",
51
+ "vite": "^7.2.4",
52
+ "vitest": "^4.0.13"
53
+ }
54
+ }