-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
36 lines (36 loc) · 1.1 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
{
"name": "kagi_browser_ext",
"version": "1.0.0",
"description": "A simple helper extension for setting Kagi as a default search engine, and automatically logging in to Kagi in incognito browsing windows",
"main": "build.js",
"private": true,
"scripts": {
"watch-firefox": "nodemon build.js firefox watch",
"watch-chrome": "nodemon build.js chrome watch",
"build": "npm run build-firefox && npm run build-chrome",
"build-firefox": "node build.js firefox",
"build-chrome": "node build.js chrome",
"format": "biome format --write . && biome check --apply .",
"lint": "biome check .",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kagisearch/browser_extensions.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/kagisearch/browser_extensions/issues"
},
"homepage": "https://github.com/kagisearch/browser_extensions#readme",
"devDependencies": {
"@biomejs/biome": "1.6.1",
"adm-zip": "0.5.12",
"nodemon": "3.1.0"
},
"engines": {
"node": "20.x",
"npm": "10.x"
}
}