-
-
Notifications
You must be signed in to change notification settings - Fork 709
/
package.json
88 lines (88 loc) · 3.05 KB
/
package.json
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": "min",
"productName": "Min",
"author": "PalmerAL",
"version": "1.33.1",
"description": "A fast, minimal browser that protects your privacy",
"electronVersion": "32.1.0",
"main": "main.build.js",
"standard": {
"globals": [
"l",
"tabs",
"tasks",
"globalArgs",
"platformType",
"throttle",
"debounce",
"empty",
"alert",
"confirm",
"requestAnimationFrame",
"requestIdleCallback",
"fetch",
"localStorage",
"performance",
"IntersectionObserver",
"Node",
"Event"
]
},
"dependencies": {
"@electron/fuses": "^1.7.0",
"chokidar": "^3.6.0",
"dexie": "^3.0.3",
"dragula": "github:minbrowser/dragula",
"electron-squirrel-startup": "^1.0.0",
"expr-eval": "^2.0.2",
"mousetrap": "^1.5.3",
"node-abi": "^3.8.0",
"pdfjs-dist": "4.2.67",
"quick-score": "^0.2.0",
"regedit": "^3.0.3",
"sortablejs": "^1.15.1",
"stemmer": "^1.0.5"
},
"devDependencies": {
"archiver": "^4.0.1",
"browserify": "^16.5.1",
"concurrently": "^5.2.0",
"decomment": "^0.9.0",
"electron": "32.1.0",
"electron-builder": "^24.13.3",
"electron-installer-windows": "^3.0.0",
"electron-renderify": "0.0.2",
"prebuild-install": "^7.0.1",
"prettier": "^2.2.1",
"snazzy": "^9.0.0",
"standard": "^14.3.4"
},
"license": "Apache-2.0",
"scripts": {
"postinstall": "node ./scripts/setupDevEnv.js",
"test": "standard --verbose js/**/*.js main/*.js",
"watch": "node ./scripts/watch.js",
"startElectron": "electron . --development-mode",
"start": "npm run build && concurrently \"npm run watch\" \"npm run startElectron\"",
"buildMain": "node ./scripts/buildMain.js",
"buildBrowser": "node ./scripts/buildBrowser.js",
"buildBrowserStyles": "node ./scripts/buildBrowserStyles.js",
"buildPreload": "node ./scripts/buildPreload.js",
"build": "npm run buildMain && npm run buildBrowser && npm run buildBrowserStyles && npm run buildPreload",
"buildWindows": "npm run build && node ./scripts/buildWindows.js",
"buildMacIntel": "npm run build && node ./scripts/buildMac.js --platform=x86",
"buildMacArm": "npm run build && node ./scripts/buildMac.js --platform=arm64",
"buildDebian": "npm run build && node ./scripts/buildDebian.js --platform=amd64",
"buildRedhat": "npm run build && node ./scripts/buildRedhat.js",
"buildAll": "npm run buildWindows && npm run buildMacIntel && npm run buildMacArm && npm run buildDebian && npm run buildRedhat && npm run buildAppImage",
"buildAppImage": "npm run build && node ./scripts/buildAppImage.js",
"updateFilters": "node ./ext/filterLists/updateEasylist.js",
"updateHttpsList": "node ./ext/httpsUpgrade/updateHttpsList.js",
"updateSuffixes": "node ./ext/publicSuffixes/updateSuffixes.js",
"lint": "prettier --write **/**/*.css **/**/*.md **/**/*.html **/**/*.json && standard --fix js/**/*.js main/*.js | snazzy"
},
"repository": {
"type": "git",
"url": "https://github.com/minbrowser/min.git"
}
}