-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.5 KB
/
Copy pathpackage.json
File metadata and controls
124 lines (124 loc) · 3.5 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "bwe-auto-trader",
"version": "0.1.10",
"description": "Cross-platform BWEnews signal monitor and OKX trading desktop app",
"main": "./out/main/index.js",
"author": "ArchLinuxStudio",
"license": "SEE LICENSE IN LICENSE",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/ArchLinuxStudio/bwe-auto-trader.git"
},
"homepage": "https://github.com/ArchLinuxStudio/bwe-auto-trader#readme",
"bugs": {
"url": "https://github.com/ArchLinuxStudio/bwe-auto-trader/issues"
},
"type": "module",
"scripts": {
"dev": "electron-vite dev",
"check:dependencies": "node scripts/check-production-dependencies.mjs",
"check:built": "node scripts/check-built-output.mjs",
"build": "npm run check:dependencies && npm run typecheck && electron-vite build && npm run check:built",
"preview": "electron-vite preview",
"typecheck": "tsc --noEmit -p tsconfig.node.json && tsc --noEmit -p tsconfig.web.json",
"test": "vitest run",
"test:watch": "vitest",
"package:win": "npm run build && electron-builder --win nsis zip --x64",
"package:mac": "npm run build && electron-builder --mac dmg --x64 --arm64",
"package:linux": "npm run build && electron-builder --linux AppImage deb --x64",
"package:linux:arm64": "npm run build && electron-builder --linux AppImage deb --arm64"
},
"dependencies": {
"@openai/codex": "0.147.0",
"socks": "2.8.9",
"teleproto": "1.228.5",
"ws": "8.21.3",
"zod": "4.4.3"
},
"devDependencies": {
"@electron/asar": "3.4.1",
"@types/node": "24.10.0",
"@types/react": "19.2.18",
"@types/react-dom": "19.2.4",
"@types/ws": "8.18.1",
"@vitejs/plugin-react": "5.2.0",
"electron": "43.4.0",
"electron-builder": "26.15.3",
"electron-vite": "5.0.0",
"react": "19.2.8",
"react-dom": "19.2.8",
"tsx": "4.23.12",
"typescript": "5.9.3",
"vite": "7.3.6",
"vitest": "4.1.10"
},
"build": {
"appId": "com.local.bweautotrader",
"productName": "BWE Auto Trader",
"icon": "build/icon.svg",
"asar": true,
"afterPack": "./scripts/after-pack-license-check.cjs",
"asarUnpack": [
"node_modules/@openai/codex/**",
"node_modules/@openai/codex-*/**"
],
"directories": {
"buildResources": "build",
"output": "release-v${version}"
},
"files": [
"out/**/*",
"package.json"
],
"extraFiles": [
{
"from": "LICENSE",
"to": "LICENSE"
},
{
"from": "THIRD_PARTY_NOTICES.txt",
"to": "THIRD_PARTY_NOTICES.txt"
},
{
"from": "licenses",
"to": "licenses",
"filter": [
"third-party-manifest.json",
"third-party/**/*"
]
}
],
"win": {
"target": [
{
"target": "nsis",
"arch": ["x64"]
},
{
"target": "zip",
"arch": ["x64"]
}
],
"artifactName": "${productName}-Portable-${version}-${arch}.${ext}"
},
"nsis": {
"artifactName": "${productName}-Setup-${version}-${arch}.${ext}",
"license": "LICENSE",
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true
},
"mac": {
"target": "dmg",
"category": "public.app-category.finance",
"hardenedRuntime": true,
"gatekeeperAssess": false
},
"linux": {
"target": ["AppImage", "deb"],
"category": "Finance"
}
}
}