-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.83 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
{
"name": "codex-quota-widget",
"version": "0.2.3",
"description": "Codex 额度小组件 / Windows desktop widget for monitoring local Codex usage quota and usage pace.",
"main": "src/main/main.js",
"author": "Codex Quota Widget Contributors",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/stupdada/codex-quota-widget.git"
},
"homepage": "https://github.com/stupdada/codex-quota-widget#readme",
"bugs": {
"url": "https://github.com/stupdada/codex-quota-widget/issues"
},
"keywords": [
"codex",
"codex-quota",
"codex-usage",
"quota-widget",
"desktop-widget",
"electron",
"codex额度",
"codex额度小组件",
"codex额度悬浮球",
"codex用量"
],
"scripts": {
"dev": "electron .",
"start": "electron .",
"test:pace": "node scripts/verify-pace-advice.js",
"test:quota-store": "node scripts/verify-quota-store.js",
"test": "npm run test:pace && npm run test:quota-store",
"build": "set CSC_IDENTITY_AUTO_DISCOVERY=false&& electron-builder --win portable",
"build:dir": "set CSC_IDENTITY_AUTO_DISCOVERY=false&& electron-builder --dir"
},
"build": {
"appId": "cn.codex.quota.widget",
"productName": "Codex Quota Widget",
"directories": {
"output": "dist"
},
"files": [
"src/**/*",
"assets/app-icon.png",
"assets/app-icon.ico",
"assets/app-icon-tray-16.png",
"assets/app-icon-256.png",
"package.json"
],
"win": {
"icon": "assets/app-icon.ico",
"target": [
{
"target": "portable",
"arch": [
"x64"
]
}
]
},
"portable": {
"artifactName": "CodexQuota.exe"
}
},
"devDependencies": {
"electron": "^31.7.7",
"electron-builder": "^24.13.3"
}
}