forked from Jelmerro/Vieb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.67 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
{
"name": "vieb",
"productName": "Vieb",
"version": "12.0.0",
"description": "Vim Inspired Electron Browser",
"main": "app/index.js",
"scripts": {
"dev": "electron app --datafolder=./ViebData/ --config-order=datafolder-only",
"fix": "eslint --fix app build.js i18n.js",
"lint": "npm run eslint && npm run tsc",
"eslint": "eslint app build.js i18n.js",
"postinstall": "patch-package",
"tsc": "tsc",
"start": "electron app",
"test": "node --test",
"test:all": "npm run test && npm run lint && echo 'All good :)'",
"update": "npx -y jelmerro/nus"
},
"repository": "https://github.com/Jelmerro/Vieb",
"homepage": "https://vieb.dev",
"keywords": [
"Vim",
"Electron",
"Browser",
"Internet"
],
"author": "Jelmer van Arnhem",
"email": "[email protected]",
"funding": "https://github.com/sponsors/Jelmerro/",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@electron/asar": "3.2.10",
"@types/jsdom": "21.1.6",
"@types/picomatch": "2.3.3",
"electron": "30.0.6",
"electron-builder": "24.13.3",
"eslint-config": "github:Jelmerro/eslint-config",
"glob": "10.3.15",
"patch-package": "8.0.0",
"terser-webpack-plugin": "5.3.10",
"typescript": "5.4.5",
"webpack": "5.91.0",
"webpack-node-externals": "3.0.0"
},
"dependencies": {
"@cliqz/adblocker-electron": "1.27.3",
"@cliqz/adblocker-electron-preload": "1.27.3",
"@mozilla/readability": "0.5.0",
"darkreader": "4.9.85",
"highlight.js": "11.9.0",
"jsdom": "24.0.0",
"marked": "12.0.2",
"marked-base-url": "1.1.3",
"marked-highlight": "2.1.1",
"picomatch": "4.0.2"
}
}