-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.3 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
37
38
39
40
41
42
43
44
45
46
47
{
"name": "better-previews",
"version": "1.0.0",
"description": "Perform search and preview links in sidebars instead of opening new tabs",
"scripts": {
"build": "node build-tools/esbuild.js --task=build",
"test": "node build-tools/esbuild.js --task=test",
"watch": "node build-tools/esbuild.js --task=watch",
"start": "node build-tools/esbuild.js --task=start",
"start:firefox": "node build-tools/esbuild.js --task=start --browser=firefox",
"format": "npx prettier . --write",
"postinstall": "cd build-tools && npm install"
},
"type": "module",
"private": true,
"author": "Justice Ogbonna",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/justiceo/search-preview"
},
"keywords": [
"chrome",
"firefox",
"addon",
"extension",
"voice",
"search",
"recording",
"notes"
],
"dependencies": {
"@braintree/sanitize-url": "^6.0.2",
"@floating-ui/dom": "^1.1.0",
"@mozilla/readability": "^0.4.2",
"@webcomponents/custom-elements": "^1.5.1",
"bootstrap": "^5.3.2",
"webextension-polyfill": "^0.10.0"
},
"devDependencies": {
"@types/chrome": "^0.0.204",
"@types/jasmine": "^4.3.1",
"@types/node": "^18.11.18",
"@types/puppeteer": "^7.0.4",
"puppeteer": "^19.4.0"
}
}