forked from Jelmerro/Vieb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.72 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": "11.1.0-dev",
"description": "Vim Inspired Electron Browser",
"main": "app/index.js",
"scripts": {
"dev": "electron app --datafolder=./ViebData/ --config-order=datafolder-only",
"fix": "eslint --fix app eslint.config.js build.js",
"lint": "npm run eslint && npm run tsc",
"eslint": "eslint app eslint.config.js build.js",
"postinstall": "patch-package",
"tsc": "tsc",
"start": "electron app",
"test": "node --test",
"test:all": "npm run test && npm run lint && echo 'All good :)'"
},
"repository": "https://github.com/Jelmerro/Vieb",
"homepage": "https://vieb.dev",
"keywords": [
"Vim",
"Electron",
"Browser",
"Internet"
],
"author": "Jelmer van Arnhem",
"email": "Jelmerro@users.noreply.github.com",
"funding": "https://github.com/sponsors/Jelmerro/",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@types/jsdom": "21.1.6",
"@types/picomatch": "2.3.3",
"electron": "30.0.1",
"electron-builder": "24.13.3",
"eslint": "9.1.0",
"eslint-plugin-jsdoc": "48.2.3",
"eslint-plugin-padding-lines": "github:Jelmerro/eslint-plugin-padding-lines",
"eslint-plugin-sort-keys": "2.3.5",
"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.1",
"@cliqz/adblocker-electron-preload": "1.27.1",
"@mozilla/readability": "0.5.0",
"darkreader": "4.9.83",
"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"
}
}