-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.34 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
{
"name": "materia-browser",
"version": "2.0.2",
"description": "Slash Browser, a privacy-hardened, AI-native, MarrowMyth-skinned Chromium browser.",
"author": "F.C. Marrow / MarrowMyth",
"main": "main.js",
"scripts": {
"start": "electron .",
"assets": "node scripts/make-build-assets.js",
"pack": "electron-builder --dir",
"dist": "electron-builder --win"
},
"build": {
"appId": "com.marrowmyth.materiabrowser",
"productName": "Slash Browser",
"copyright": "(c) 2026 MarrowMyth",
"afterPack": "scripts/evs-sign.js",
"electronDownload": {
"mirror": "https://github.com/castlabs/electron-releases/releases/download/",
"customDir": "v42.3.3+wvcus"
},
"directories": {
"output": "dist",
"buildResources": "build"
},
"files": [
"main.js",
"preload.js",
"mm-nt-preload.js",
"chrome.js",
"chrome.css",
"index.html",
"newtab.html",
"socials-data.js",
"assets/**/*",
"mm-ai.js",
"lib/**/*",
"theme.css",
"fonts/**/*",
"ai.html",
"ai.js",
"ai.css",
"ai-preload.js",
"ai-page.html",
"ai-page.js",
"ai-page.css",
"palette.html",
"palette.js",
"palette.css",
"palette-preload.js",
"reader.html",
"reader.js",
"reader.css",
"reader-preload.js"
],
"win": {
"target": [
"nsis"
],
"icon": "build/icon.png",
"artifactName": "Slash-Browser-Setup-${version}.${ext}"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "Slash Browser",
"uninstallDisplayName": "Slash Browser ${version}",
"license": "build/LICENSE.txt",
"installerHeader": "build/installerHeader.bmp",
"installerSidebar": "build/installerSidebar.bmp",
"uninstallerSidebar": "build/installerSidebar.bmp",
"runAfterFinish": true
}
},
"devDependencies": {
"electron": "github:castlabs/electron-releases#v42.3.3+wvcus",
"electron-builder": "^26.15.3"
},
"dependencies": {
"@ghostery/adblocker-electron": "^2.18.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"@pythonluvr/squire": "^1.3.0",
"sql.js": "^1.14.1"
}
}