- TheseusNavigator/package.json: 0.0.2 → 0.0.3. Address-bar fix (main.js refreshTabUrl, in 9b9c93c) makes silentmode.bch subpage clicks update the URL correctly. - site/tools/index.html: collapsed the two-flagship-cards row into one Theseus Navigator panel with a shared description and two version sub-blocks (Windows + Android) inside a divider grid. Same-product-two-platforms framing. - site/index.html: Tools card copy updated to match (Theseus Windows + Android; built-in Ariadne; also relay, extension, standalone resolver). - site/releases/index.html + releases-manifest.json: Theseus 0.0.3 entry with the new hashes; Android section corrected to v0.8 (was previously showing v0.8 filename with a v0.2 hash — the linter had gone half-way).
65 lines
1.8 KiB
JSON
65 lines
1.8 KiB
JSON
{
|
|
"name": "theseus-navigator",
|
|
"version": "0.0.3",
|
|
"description": "Theseus Navigator — a browser that follows the thread. By Silent Mode, a Deviant project.",
|
|
"author": "Silent Mode",
|
|
"main": "main.js",
|
|
"type": "commonjs",
|
|
"scripts": {
|
|
"start": "electron .",
|
|
"resolve-test": "node resolve-test.mjs",
|
|
"dist": "electron-builder --win nsis portable"
|
|
},
|
|
"dependencies": {
|
|
"fetch-socks": "^1.3.3",
|
|
"socks-proxy-agent": "^10.1.0",
|
|
"ws": "^8.18.0"
|
|
},
|
|
"devDependencies": {
|
|
"electron": "^33.0.0",
|
|
"electron-builder": "^25.1.8"
|
|
},
|
|
"build": {
|
|
"appId": "st.silentmode.theseus",
|
|
"productName": "Theseus Navigator",
|
|
"artifactName": "TheseusNavigator-${version}-${arch}.${ext}",
|
|
"directories": { "output": "dist-public" },
|
|
"asar": true,
|
|
"files": [
|
|
"main.js",
|
|
"preload.js",
|
|
"chrome.html",
|
|
"home.html",
|
|
"settings.html",
|
|
"settings-preload.js",
|
|
"popover.html",
|
|
"popover-preload.js",
|
|
"engine-picker.html",
|
|
"engine-picker-preload.js",
|
|
"downloads.html",
|
|
"downloads-preload.js",
|
|
"collision.html",
|
|
"collision-preload.js",
|
|
"package.json",
|
|
"node_modules/**/*",
|
|
"!**/*.md",
|
|
"!**/*.map",
|
|
"!tor${/*}",
|
|
"!dist-public${/*}",
|
|
"!resolve-test.mjs",
|
|
"!*PROMPT.md"
|
|
],
|
|
"extraResources": [
|
|
{ "from": "tor", "to": "tor" },
|
|
{ "from": "../Argus/src/lib/resolver-web.js", "to": "resolver-web.mjs" }
|
|
],
|
|
"win": { "target": ["nsis", "portable"] },
|
|
"nsis": {
|
|
"oneClick": false,
|
|
"perMachine": false,
|
|
"allowToChangeInstallationDirectory": true,
|
|
"artifactName": "TheseusNavigator-Setup-${version}.${ext}"
|
|
},
|
|
"portable": { "artifactName": "TheseusNavigator-${version}-portable.${ext}" }
|
|
}
|
|
}
|