-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.93 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
{
"name": "codex-profile-pro",
"version": "1.0.8",
"description": "CodexProfilePro is a cross-platform desktop dashboard for Codex usage, token heatmaps, API cost estimates, and hourly tray refresh.",
"author": {
"name": "Leon",
"email": "Leonxlnx@users.noreply.github.com"
},
"main": "CodexProfilePro/electron/main.cjs",
"private": true,
"scripts": {
"start": "electron .",
"dev": "electron .",
"sync": "node CodexProfilePro/fast-codex-usage-export.mjs CodexProfilePro/slopmeter.json",
"test": "npm run test:smoke",
"test:smoke": "node scripts/smoke.mjs",
"verify:share": "electron scripts/verify-share-render.cjs",
"dist": "electron-builder --publish never",
"dist:win": "electron-builder --win --publish never",
"dist:mac": "electron-builder --mac --publish never",
"dist:linux": "electron-builder --linux --publish never"
},
"build": {
"appId": "com.lexn8.codexprofilepro",
"productName": "CodexProfilePro",
"asar": true,
"asarUnpack": [
"CodexProfilePro/fast-codex-usage-export.mjs"
],
"files": [
"CodexProfilePro/**/*",
"!CodexProfilePro/slopmeter.json",
"!CodexProfilePro/slopmeter.*.json",
"package.json"
],
"extraMetadata": {
"main": "CodexProfilePro/electron/main.cjs"
},
"win": {
"target": [
"nsis",
"portable"
],
"icon": "CodexProfilePro/assets/profile.ico"
},
"mac": {
"target": [
"dmg",
"zip"
],
"icon": "CodexProfilePro/assets/profile.icns",
"category": "public.app-category.developer-tools"
},
"linux": {
"target": [
"AppImage",
"deb"
],
"icon": "CodexProfilePro/assets/profile-icon.png",
"maintainer": "Leonxlnx <Leonxlnx@users.noreply.github.com>",
"category": "Development"
}
},
"devDependencies": {
"electron": "^39.2.7",
"electron-builder": "^26.0.12"
}
}