-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 4.15 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 4.15 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
{
"name": "hotsheet",
"version": "0.16.2",
"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.",
"type": "module",
"license": "MIT",
"author": "westphal",
"homepage": "https://github.com/brianwestphal/hotsheet",
"repository": {
"type": "git",
"url": "https://github.com/brianwestphal/hotsheet"
},
"keywords": [
"project-management",
"tickets",
"cli",
"developer-tools",
"local",
"lightweight",
"ai",
"worklist",
"task-tracker"
],
"engines": {
"node": ">=20"
},
"bin": {
"hotsheet": "./dist/cli.js"
},
"scripts": {
"dev": "npm run build:client && npm run build:plugins && tsx --tsconfig tsconfig.json src/cli.ts --replace",
"build": "tsup",
"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",
"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",
"test": "vitest run --coverage",
"test:watch": "vitest",
"test:fast": "vitest run && playwright test --grep-invert 'live integration|GitHub credentials|GITHUB_PLUGIN|hasGithubCreds|ATTACHMENT_REPO|PLUGINS_ENABLED'",
"test:all": "bash scripts/test-all.sh",
"test:all-including-plugins": "bash scripts/test-all-with-plugins.sh",
"test:e2e": "playwright test",
"test:e2e:fast": "playwright test --grep-invert 'live integration|GitHub credentials|GITHUB_PLUGIN|hasGithubCreds|ATTACHMENT_REPO|PLUGINS_ENABLED'",
"test:e2e:ui": "playwright test --ui",
"lint": "eslint src/",
"clean": "rm -rf dist node_modules/.cache",
"release": "bash scripts/release.sh",
"prepublishOnly": "npm run build",
"dev:server": "npm run build:client && npm run build:plugins && tsx --tsconfig tsconfig.json src/cli.ts --no-open --strict-port",
"tauri": "tauri",
"tauri:clean": "rm -rf src-tauri/target",
"tauri:dev": "bash scripts/ensure-sidecar-stub.sh && tauri dev --no-watch",
"tauri:dev:watch": "bash scripts/ensure-sidecar-stub.sh && tauri dev",
"tauri:build": "bash scripts/build-sidecar.sh && tauri build",
"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"
},
"files": [
"dist",
"!dist/*.map"
],
"dependencies": {
"@electric-sql/pglite": "^0.3.15",
"@hono/node-server": "^1.19.9",
"@modelcontextprotocol/sdk": "^1.27.1",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-search": "^0.16.0",
"@xterm/addon-serialize": "^0.14.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/xterm": "^6.0.0",
"hono": "^4.12.2",
"marked": "^18.0.0",
"node-pty": "^1.1.0",
"ws": "^8.20.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^9.39.3",
"@playwright/test": "^1.59.1",
"@tauri-apps/cli": "^2",
"@types/marked": "^5.0.2",
"@types/node": "^22.0.0",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^4.1.0",
"c8": "^11.0.0",
"dotenv": "^17.4.1",
"esbuild": "^0.27.3",
"eslint": "^9.39.3",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-tsdoc": "^0.5.2",
"happy-dom": "^20.9.0",
"lucide-static": "^1.6.0",
"nyc": "^18.0.0",
"sass": "^1.97.3",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vitest": "^4.1.0"
}
}