-
-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.86 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
{
"name": "vieb",
"version": "12.10.1-dev",
"description": "Vim Inspired Electron Browser",
"keywords": [
"Vim",
"Electron",
"Browser",
"Internet"
],
"homepage": "https://vieb.dev",
"bugs": "https://github.com/Jelmerro/Vieb/issues/",
"repository": {
"url": "https://github.com/Jelmerro/Vieb",
"type": "git"
},
"funding": "https://github.com/sponsors/Jelmerro/",
"license": "GPL-3.0-or-later",
"author": "Jelmer van Arnhem",
"type": "commonjs",
"exports": "./app/*",
"main": "./app/index.js",
"scripts": {
"dev": "electron app --datafolder=./ViebData/ --config-order=datafolder-only",
"eslint": "eslint",
"fix": "eslint --fix",
"lint": "npm run eslint && npm run tsc",
"start": "electron app",
"test": "node --test",
"test:all": "npm run test && npm run lint && echo 'All good :)'",
"tsc": "tsc",
"update": "npx -y jelmerro/nus"
},
"dependencies": {
"@ghostery/adblocker-electron": "2.18.1",
"@ghostery/adblocker-electron-preload": "2.18.1",
"@mozilla/readability": "0.6.0",
"darkreader": "4.9.96",
"highlight.js": "11.11.1",
"linkedom": "0.18.13",
"marked": "15.0.12",
"marked-base-url": "1.1.10",
"marked-highlight": "2.2.4",
"picomatch": "4.0.5"
},
"devDependencies": {
"@electron/asar": "4.2.0",
"@types/picomatch": "4.0.3",
"electron": "43.1.1",
"electron-builder": "26.15.3",
"eslint-config": "github:Jelmerro/eslint-config",
"glob": "13.0.6",
"terser-webpack-plugin": "5.6.1",
"type-config": "github:Jelmerro/type-config",
"webpack": "5.108.4",
"webpack-node-externals": "3.0.0"
},
"engines": {
"node": ">=22"
}
}