-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.3 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
{
"name": "chat-visualizer",
"productName": "ChatVisualizer",
"version": "0.2.0",
"private": true,
"description": "Local-first browser for Codex, Claude Code, Cursor, Grok Build, and Antigravity chat/session history.",
"author": "dinakars777",
"license": "MIT",
"main": "electron/main.js",
"type": "commonjs",
"scripts": {
"dev": "node server.js",
"start": "node server.js",
"electron": "electron .",
"package:mac": "electron-builder --mac --dir",
"dist:mac": "electron-builder --mac dmg",
"check": "node --check server.js && node --check public/app.js && node --check electron/main.js"
},
"engines": {
"node": ">=20"
},
"build": {
"appId": "com.dinakars777.chatvisualizer",
"productName": "ChatVisualizer",
"directories": {
"output": "dist"
},
"files": [
"electron/**/*",
"server.js",
"public/**/*",
"docs/**/*",
"README.md",
"LICENSE",
"package.json"
],
"mac": {
"category": "public.app-category.developer-tools",
"icon": "build/icon.icns",
"target": [
"dir",
"dmg"
]
},
"dmg": {
"artifactName": "${productName}-${version}-${arch}.${ext}"
}
},
"devDependencies": {
"electron": "^42.3.3",
"electron-builder": "^26.8.1"
}
}