hotsheet 0.16.2 → 0.17.0-beta.13

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.
@@ -51,7 +51,7 @@ var DEFAULT_STATUS_LABEL_MAP = {
51
51
  var GITHUB_STATE_FOR_STATUS = {
52
52
  not_started: "open",
53
53
  started: "open",
54
- completed: "closed",
54
+ completed: "open",
55
55
  verified: "closed"
56
56
  };
57
57
  var _context = null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hotsheet",
3
- "version": "0.16.2",
3
+ "version": "0.17.0-beta.13",
4
4
  "description": "A lightweight local project management tool. Create, categorize, and prioritize tickets with a fast bullet-list interface, then export an Up Next worklist for AI tools.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -28,9 +28,9 @@
28
28
  "hotsheet": "./dist/cli.js"
29
29
  },
30
30
  "scripts": {
31
- "dev": "npm run build:client && npm run build:plugins && tsx --tsconfig tsconfig.json src/cli.ts",
31
+ "dev": "npm run build:client && npm run build:plugins && tsx --tsconfig tsconfig.json src/cli.ts --replace",
32
32
  "build": "tsup",
33
- "build:client": "mkdir -p dist/client/assets && cp src/client/assets/* dist/client/assets/ && npx esbuild src/client/app.tsx --bundle --format=iife --outfile=dist/client/app.global.js --target=es2020 --jsx=automatic --jsx-import-source=#jsx --alias:#jsx/jsx-runtime=./src/jsx-runtime.ts --define:__PLUGINS_ENABLED__=${PLUGINS_ENABLED:-true} --sourcemap && npx sass src/client/styles.scss dist/client/styles.css --style compressed --no-source-map",
33
+ "build:client": "mkdir -p dist/client/assets && cp src/client/assets/* dist/client/assets/ && npx esbuild src/client/app.tsx --bundle --format=iife --outfile=dist/client/app.global.js --target=es2020 --jsx=automatic --jsx-import-source=#jsx --alias:#jsx/jsx-runtime=./src/jsx-runtime.ts --define:__PLUGINS_ENABLED__=${PLUGINS_ENABLED:-true} --sourcemap && npx sass src/client/styles.scss dist/client/styles.css --style compressed --no-source-map && cat node_modules/@xterm/xterm/css/xterm.css >> dist/client/styles.css",
34
34
  "build:plugins": "for d in plugins/*/; do if [ -f \"$d/manifest.json\" ]; then name=$(basename $d); mkdir -p dist/plugins/$name && npx esbuild $d/src/index.ts --bundle --format=esm --outfile=dist/plugins/$name/index.js --platform=node --target=node20 && cp $d/manifest.json dist/plugins/$name/; fi; done",
35
35
  "test": "vitest run --coverage",
36
36
  "test:watch": "vitest",
@@ -43,11 +43,13 @@
43
43
  "lint": "eslint src/",
44
44
  "clean": "rm -rf dist node_modules/.cache",
45
45
  "release": "bash scripts/release.sh",
46
+ "release:beta": "bash scripts/release.sh --beta",
46
47
  "prepublishOnly": "npm run build",
47
48
  "dev:server": "npm run build:client && npm run build:plugins && tsx --tsconfig tsconfig.json src/cli.ts --no-open --strict-port",
48
49
  "tauri": "tauri",
49
50
  "tauri:clean": "rm -rf src-tauri/target",
50
- "tauri:dev": "bash scripts/ensure-sidecar-stub.sh && tauri dev",
51
+ "tauri:dev": "bash scripts/ensure-sidecar-stub.sh && tauri dev --no-watch",
52
+ "tauri:dev:watch": "bash scripts/ensure-sidecar-stub.sh && tauri dev",
51
53
  "tauri:build": "bash scripts/build-sidecar.sh && tauri build",
52
54
  "tauri:build:local": "read -rsp \"Password: \" MYPASS && echo && TAURI_SIGNING_PRIVATE_KEY_PASSWORD=$MYPASS TAURI_SIGNING_PRIVATE_KEY=$(cat ~/.tauri/hotsheet.key) npm run tauri:build"
53
55
  },
@@ -59,8 +61,17 @@
59
61
  "@electric-sql/pglite": "^0.3.15",
60
62
  "@hono/node-server": "^1.19.9",
61
63
  "@modelcontextprotocol/sdk": "^1.27.1",
64
+ "@xterm/addon-fit": "^0.11.0",
65
+ "@xterm/addon-search": "^0.16.0",
66
+ "@xterm/addon-serialize": "^0.14.0",
67
+ "@xterm/addon-web-links": "^0.12.0",
68
+ "@xterm/headless": "^6.0.0",
69
+ "@xterm/xterm": "^6.0.0",
62
70
  "hono": "^4.12.2",
71
+ "kerfjs": "^0.6.0",
63
72
  "marked": "^18.0.0",
73
+ "node-pty": "^1.1.0",
74
+ "ws": "^8.20.0",
64
75
  "zod": "^4.3.6"
65
76
  },
66
77
  "devDependencies": {
@@ -69,6 +80,7 @@
69
80
  "@tauri-apps/cli": "^2",
70
81
  "@types/marked": "^5.0.2",
71
82
  "@types/node": "^22.0.0",
83
+ "@types/ws": "^8.18.1",
72
84
  "@vitest/coverage-v8": "^4.1.0",
73
85
  "c8": "^11.0.0",
74
86
  "dotenv": "^17.4.1",
@@ -77,6 +89,7 @@
77
89
  "eslint-plugin-import-x": "^4.16.1",
78
90
  "eslint-plugin-simple-import-sort": "^12.1.1",
79
91
  "eslint-plugin-tsdoc": "^0.5.2",
92
+ "happy-dom": "^20.9.0",
80
93
  "lucide-static": "^1.6.0",
81
94
  "nyc": "^18.0.0",
82
95
  "sass": "^1.97.3",