-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.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
{
"name": "hindcast",
"version": "0.1.3",
"description": "Browse, search, and replay every Claude Code session on your Mac. A local-first session viewer, timeline scrubber, and cost tracker.",
"author": "Karan Bansal",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/karanb192/hindcast.git"
},
"homepage": "https://github.com/karanb192/hindcast#readme",
"main": "main.js",
"scripts": {
"build": "esbuild src/renderer.jsx --bundle --outfile=out/renderer.js --jsx=automatic --loader:.js=jsx",
"start": "npm run build && electron .",
"dev": "electron .",
"pack": "npm run build && electron-builder --mac --dir",
"dist": "npm run build && electron-builder --mac",
"postdist": "xcrun stapler validate dist/mac-arm64/Hindcast.app && spctl --assess --type exec dist/mac-arm64/Hindcast.app && echo 'verified: signed + notarized + stapled'"
},
"build": {
"appId": "in.karanbansal.hindcast",
"productName": "Hindcast",
"copyright": "Copyright \u00a9 2026 Karan Bansal",
"directories": {
"output": "dist"
},
"files": [
"main.js",
"preload.js",
"index.html",
"styles.css",
"out/**/*",
"lib/**/*",
"assets/icon-512.png"
],
"mac": {
"target": [
{
"target": "zip",
"arch": [
"arm64"
]
},
{
"target": "dmg",
"arch": [
"arm64"
]
}
],
"category": "public.app-category.developer-tools",
"icon": "assets/icon.icns",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "assets/entitlements.mac.plist",
"entitlementsInherit": "assets/entitlements.mac.plist",
"notarize": true
},
"publish": {
"provider": "github",
"owner": "karanb192",
"repo": "hindcast"
}
},
"devDependencies": {
"dompurify": "^3.1.6",
"electron": "^33.4.11",
"electron-builder": "^25.1.8",
"esbuild": "^0.24.0",
"playwright-core": "^1.61.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"dependencies": {
"marked": "^14.1.2"
}
}