-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.73 KB
/
package.json
File metadata and controls
69 lines (69 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
60
61
62
63
64
65
66
67
68
69
{
"name": "custombangsearch",
"version": "0.11.4",
"description": "A browser extension that lets you use custom DuckDuckGo-style bangs directly from the address bar",
"main": "",
"scripts": {
"test": "",
"lint": "npx biome lint ./src",
"tsc-noemit": "npx tsc -noEmit",
"build-firefox": "node ./bob.mjs -d -b firefox",
"build-firefox-release": "node ./bob.mjs -z -s -b firefox",
"build-chrome": "node ./bob.mjs -d -b chrome",
"build-chrome-release": "node ./bob.mjs -z -s -b chrome"
},
"repository": {
"type": "git",
"url": "https://github.com/psidex/CustomBangSearch.git"
},
"keywords": [
"chrome",
"firefox",
"extension",
"addon",
"browser-extension",
"web-extension",
"chrome-extension",
"firefox-extension",
"firefox-addon",
"search",
"custom-search",
"duckduckgo",
"bang",
"bangs"
],
"author": "psidex",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/psidex/CustomBangSearch/issues"
},
"homepage": "https://github.com/psidex/CustomBangSearch#readme",
"dependencies": {
"@mantine/core": "9.0.0",
"@mantine/hooks": "9.0.0",
"@mantine/notifications": "9.0.0",
"@uidotdev/usehooks": "^2.4.1",
"lucide-react": "1.7.0",
"lz-string": "^1.5.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-virtuoso": "^4.18.4",
"webextension-polyfill": "0.12.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.10",
"@types/node": "25.5.2",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@types/webextension-polyfill": "0.12.5",
"esbuild": "0.28.0",
"execa": "9.6.1",
"fs-extra": "11.3.4",
"listr2": "10.2.1",
"postcss": "^8.5.8",
"postcss-cli": "^11.0.1",
"postcss-preset-mantine": "^1.18.0",
"postcss-simple-vars": "^7.0.1",
"typescript": "6.0.2"
}
}