-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.29 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "zcode-account-switcher",
"version": "0.1.0",
"description": "ZCode, BigModel, Z.ai and 智谱清言 account switcher for managing multiple ZCode desktop logins.",
"keywords": [
"zcode",
"zcode account switcher",
"zcode account manager",
"zcode multiple accounts",
"zcode login switcher",
"zcode credential switcher",
"bigmodel",
"bigmodel.cn",
"bigmodel account switcher",
"z.ai",
"zai",
"zai account switcher",
"zhipu",
"zhipu ai",
"zhipu account switcher",
"chatglm",
"chatglm account switcher",
"glm",
"glm coding plan",
"zcode 账号切换",
"zcode 多账号",
"zcode 账号管理",
"zcode 凭据切换",
"zcode 登录切换",
"智谱",
"智谱AI",
"智谱清言",
"智谱账号切换",
"智谱清言账号切换",
"bigmodel 账号切换",
"z.ai 账号切换",
"glm coding plan 账号切换",
"electron",
"account switcher"
],
"author": "ZCode Account Switcher",
"license": "MIT",
"main": "src/main.js",
"private": true,
"scripts": {
"check": "node --check src/main.js && node --check src/preload.js && node --check src/renderer/renderer.js && node --check preview-server.js && node --check scripts/start-electron.js && node --check scripts/dev-electron.js",
"dev": "node scripts/dev-electron.js",
"pack": "electron-builder --dir",
"preview": "node preview-server.js",
"release:win": "electron-builder --win",
"start": "node scripts/start-electron.js"
},
"build": {
"appId": "com.zcode.accountswitcher",
"productName": "ZCode Account Switcher",
"directories": {
"output": "dist"
},
"files": [
"src/**/*",
"LICENSE",
"README.md",
"package.json",
"node_modules/lucide/dist/umd/lucide.min.js"
],
"asar": true,
"win": {
"icon": "build/icon.ico",
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
]
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true
}
},
"devDependencies": {
"electron": "^39.2.7",
"electron-builder": "^26.15.3",
"electronmon": "^2.0.4"
},
"dependencies": {
"lucide": "^1.21.0"
}
}