-
-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathpackage.json
55 lines (55 loc) · 1.61 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
{
"name": "vieb",
"productName": "Vieb",
"version": "12.2.1-dev",
"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",
"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.18",
"@types/jsdom": "21.1.7",
"@types/picomatch": "3.0.2",
"electron": "34.0.0",
"electron-builder": "25.1.8",
"eslint-config": "github:Jelmerro/eslint-config",
"glob": "11.0.1",
"terser-webpack-plugin": "5.3.11",
"typescript": "5.7.3",
"webpack": "5.97.1",
"webpack-node-externals": "3.0.0"
},
"dependencies": {
"@ghostery/adblocker-electron": "2.3.1",
"@ghostery/adblocker-electron-preload": "2.3.1",
"@mozilla/readability": "0.5.0",
"darkreader": "4.9.96",
"highlight.js": "11.11.1",
"jsdom": "26.0.0",
"marked": "15.0.6",
"marked-base-url": "1.1.6",
"marked-highlight": "2.2.1",
"picomatch": "4.0.2"
}
}