-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 952 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 952 Bytes
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
{
"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": "nodemon build.js firefox watch",
"build": "node build.js firefox",
"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"
}
}