-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
166 lines (166 loc) · 4.98 KB
/
package.json
File metadata and controls
166 lines (166 loc) · 4.98 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
{
"name": "gnunae",
"version": "0.8.34",
"productName": "GnuNae",
"main": "dist/electron/main.js",
"author": {
"name": "Won Dong",
"email": "contact@example.com"
},
"description": "AI-powered browser with Codex sidebar for intelligent web automation",
"license": "MIT",
"scripts": {
"build:electron": "tsc",
"build:ui": "vite build && node scripts/build-ui.js",
"build:docker": "docker build -t gnunae/sandbox:latest ./docker",
"build:docker:clean": "docker build --no-cache -t gnunae/sandbox:latest ./docker",
"build": "npm run build:electron && npm run build:ui",
"build:all": "npm run build && npm run build:docker:clean",
"dev:ui": "vite --config vite.config.ts",
"dev:electron": "npm run build:electron && electron .",
"dev": "concurrently \"npm run dev:ui\" \"wait-on http://localhost:5173 && npm run dev:electron\"",
"start": "electron .",
"download-node": "node scripts/download-node.js",
"download-node-darwin-arm64": "node scripts/download-node.js --platform darwin --arch arm64",
"download-node-darwin-x64": "node scripts/download-node.js --platform darwin --arch x64",
"install-codex": "node scripts/install-codex.js",
"pack:mac": "npm run download-node-darwin-arm64 && npm run download-node-darwin-x64 && npm run install-codex && npm run build && node scripts/load-env.js --mac dmg zip",
"pack:mac-mas": "npm run download-node-darwin-arm64 && npm run download-node-darwin-x64 && npm run install-codex && npm run build && node scripts/load-env.js --mac mas",
"deploy:mas": "node scripts/deploy-mas.js",
"pack:win": "npm run download-node && npm run install-codex && ping 127.0.0.1 -n 4 > nul && npm run build && node scripts/load-env.js --win",
"pack:linux": "npm run build && electron-builder --linux",
"pack:all": "npm run build && electron-builder --mac --win --linux",
"postversion": "git push && git push --tags"
},
"build": {
"appId": "com.gnunae.browser",
"productName": "GnuNae",
"artifactName": "${productName}-${os}-${arch}.${ext}",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"scripts/**/*"
],
"afterPack": "./scripts/afterPack.js",
"mac": {
"category": "public.app-category.productivity",
"icon": "assets/gnunae.png",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"notarize": true,
"target": [
{
"target": "dmg",
"arch": [
"x64",
"arm64"
]
},
{
"target": "zip",
"arch": [
"x64",
"arm64"
]
}
],
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist"
},
"mas": {
"category": "public.app-category.productivity",
"icon": "assets/gnunae.png",
"notarize": false,
"target": [
{
"target": "mas",
"arch": [
"x64",
"arm64"
]
}
],
"entitlements": "build/entitlements.mas.plist",
"entitlementsInherit": "build/entitlements.mas.inherit.plist",
"hardenedRuntime": false,
"provisioningProfile": "certs/GnuNae.provisionprofile",
"extendInfo": {
"ElectronTeamID": "${env.APPLE_TEAM_ID}"
}
},
"win": {
"icon": "assets/gnunae.ico",
"target": [
"nsis",
"portable",
"appx"
],
"signAndEditExecutable": true,
"extraResources": [
{
"from": "resources/runtime",
"to": "runtime",
"filter": [
"**/*"
]
},
{
"from": "resources/codex",
"to": "codex",
"filter": [
"**/*"
]
}
]
},
"appx": {
"identityName": "BigDad.GnuNae",
"publisher": "${env.MSSTORE_PUBLISHER_CN}",
"publisherDisplayName": "BigDad",
"displayName": "GnuNae",
"applicationId": "GnuNae",
"backgroundColor": "#0a0a0f"
},
"linux": {
"icon": "assets/gnunae.png",
"target": [
"AppImage",
"deb"
],
"category": "Network"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
},
"devDependencies": {
"@openai/codex": "^0.118.0",
"@types/node": "^25.5.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/uuid": "^11.0.0",
"@vitejs/plugin-react": "^5.1.3",
"concurrently": "^9.0.0",
"electron": "^39.5.1",
"electron-builder": "^26.8.1",
"sharp": "^0.34.5",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"wait-on": "^9.0.4"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@playwright/mcp": "^0.0.70",
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"node-pty": "^1.1.0",
"playwright": "^1.59.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"uuid": "^13.0.0",
"zod": "^4.3.6"
}
}