-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 936 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 936 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": "xray-extension",
"version": "0.7.0",
"private": true,
"description": "NOSTR-sourced URL metadata & article capture — Chrome/Firefox MV3 WebExtension.",
"repository": "github:bryanmatthewsimonson/xray",
"license": "MIT",
"type": "module",
"scripts": {
"build": "node esbuild.config.mjs",
"watch": "node esbuild.config.mjs --watch",
"clean": "rm -rf dist",
"lint": "web-ext lint --source-dir . --self-hosted",
"test": "node --test tests/*.test.mjs",
"version:set": "node scripts/set-version.mjs",
"icons": "node scripts/build-icons.mjs"
},
"dependencies": {
"@mozilla/readability": "^0.6.0",
"pdfjs-dist": "^6.1.200",
"turndown": "^7.2.2",
"turndown-plugin-gfm": "^1.0.2"
},
"devDependencies": {
"@resvg/resvg-js": "^2.6.2",
"esbuild": "^0.25.0",
"fake-indexeddb": "^6.2.5",
"web-ext": "^10.4.0"
},
"engines": {
"node": ">=20"
}
}