-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.03 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.03 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
{
"name": "aby-claude-watcher",
"version": "1.7.2",
"description": "Aby Claude Watcher — dashboard desktop pour monitorer en temps réel vos sessions Claude Code",
"main": "main.js",
"scripts": {
"start": "electron .",
"dev": "electron . --dev",
"build": "electron-builder --mac",
"test": "node test/url.test.js && node test/focus.test.js && node test/config.test.js && node test/updater.test.js && node test/watcher.test.js && node test/subagents.test.js"
},
"build": {
"appId": "fr.aby-agency.aby-claude-watcher",
"productName": "Aby Claude Watcher",
"afterAllArtifactBuild": "build/after-artifact-build.js",
"mac": {
"category": "public.app-category.developer-tools",
"target": [
{ "target": "dmg", "arch": ["x64", "arm64"] }
],
"icon": "assets/icon.icns"
},
"dmg": {
"title": "Aby Claude Watcher",
"artifactName": "${productName}-${version}-${arch}.dmg",
"background": "build/background.png",
"window": { "width": 540, "height": 500 },
"iconSize": 80,
"iconTextSize": 12,
"contents": [
{ "x": 140, "y": 180, "type": "file" },
{ "x": 400, "y": 180, "type": "link", "path": "/Applications" }
]
},
"files": [
"main.js",
"preload.js",
"preload-popover.js",
"watcher.js",
"subagents.js",
"socket.js",
"focus.js",
"config.js",
"updater.js",
"install-hooks.js",
"i18n.js",
"usage.js",
"ui/**/*",
"bin/**/*",
"assets/**/*"
]
},
"bin": {
"aby-claude-watcher": "main.js"
},
"keywords": [
"claude",
"claude-code",
"monitor",
"dashboard",
"electron",
"aby"
],
"author": "Aby Agency <contact@aby-agency.fr> (https://aby-agency.fr)",
"license": "MIT",
"homepage": "https://aby-agency.fr",
"repository": {
"type": "git",
"url": "https://github.com/aby-agency/aby-claude-watcher.git"
},
"devDependencies": {
"electron": "^41.2.0",
"electron-builder": "^26.8.1"
}
}