-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.37 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.37 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
{
"author": {
"name": "Adam Lui",
"email": "adam@kudoai.com",
"url": "https://github.com/adamlui"
},
"homepage": "https://github.com/KudoAI/brave-omnibox/#readme",
"license": "MIT",
"funding": [
{ "type": "github", "url": "http://github.com/sponsors/adamlui" },
{ "type": "ko-fi", "url": "https://ko-fi.com/adamlui" },
{ "type": "paypal", "url": "https://paypal.me/adamlui" }
],
"scripts": {
"prepare": "husky",
"lint": "eslint . --cache",
"lint:all": "eslint .",
"lint:fix": "eslint . --fix --cache",
"lint:fix-all": "eslint . --fix",
"translate:chrome": "npm run translate:chromium",
"translate:chromium": "cd chromium && translate-messages",
"translate:ff": "npm run translate:firefox",
"translate:firefox": "cd firefox && translate-messages",
"bump": "node utils/bump/extension-manifests",
"bump:ext": "npm run bump",
"bump:ext-nc": "npm run bump -- --no-commit",
"bump:ext-np": "npm run bump -- --no-push",
"bump:chrome": "npm run bump:chromium",
"bump:chromium": "npm run bump -- --chrome",
"bump:ff": "npm run bump:firefox",
"bump:firefox": "npm run bump -- --ff"
},
"devDependencies": {
"@eslint/json": "^1.2.0",
"@eslint/markdown": "^8.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"eslint": "^9.39.4",
"eslint-plugin-import": "^2.32.0",
"husky": "^9.1.7"
}
}