-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.73 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
{
"name": "@kudoai/brave-omnibox",
"private": true,
"description": "Type @brave in address bar to get answers from Brave AI",
"author": {
"name": "KudoAI & contributors",
"email": "authors@kudoai.com",
"url": "https://kudoai.com"
},
"homepage": "https://kudoai.com/braveomnibox",
"bugs": {
"url": "https://github.com/KudoAI/brave-omnibox/issues",
"email": "support@kudoai.com"
},
"license": "MIT",
"funding": [
{
"type": "github",
"url": "http://github.com/sponsors/KudoAI"
},
{
"type": "paypal",
"url": "http://paypal.biz/kudoai"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/KudoAI/brave-omnibox.git"
},
"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/js": "^10.0.1",
"@eslint/json": "^2.0.1",
"@eslint/markdown": "^8.0.3",
"@stylistic/eslint-plugin": "^5.10.0",
"eslint": "^10.3.0",
"eslint-plugin-import-x": "^4.17.1",
"globals": "^17.7.0",
"husky": "^9.1.7"
}
}