-
-
Notifications
You must be signed in to change notification settings - Fork 113
/
package.json
52 lines (52 loc) · 1.36 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
{
"name": "bonjourr",
"version": "20.2.1",
"description": "Improve your web browsing experience with Bonjourr, a beautiful, customizable and lightweight homepage.",
"author": "Victor Azevedo (https://victr.me)",
"license": "ISC",
"keywords": [
"minimalist",
"lightweight",
"startpage",
"homepage",
"newtab"
],
"type": "module",
"scripts": {
"build": "node build.config.js",
"edge": "node build.config.js edge dev",
"chrome": "node build.config.js chrome dev",
"firefox": "node build.config.js firefox dev",
"safari": "node build.config.js safari dev",
"online": "node build.config.js online dev",
"online:docker": "node build.config.js online prod",
"lint": "npx prettier --check .",
"format": "npx prettier ./_locales/**/translations.json --write --log-level silent",
"translate": "node build.config.js translate && pnpm format",
"test": "pnpm --filter tests test"
},
"dependencies": {
"@victr/deepmerge": "^1.3.2",
"clickdown": "^1.2.2",
"idb-keyval": "^6.2.1",
"pocket-editor": "^2.3.0",
"prism-code-editor": "3.4.0"
},
"devDependencies": {
"@types/chrome": "^0.0.272",
"esbuild": "^0.24.0",
"user-agent-data-types": "^0.4.2",
"web-ext-types": "^3.2.1"
},
"prettier": {
"tabWidth": 4,
"useTabs": true,
"semi": false,
"singleQuote": true,
"printWidth": 128
},
"engines": {
"node": ">=18.20.2",
"pnpm": ">=7"
}
}