-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.22 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
{
"name": "paperlight",
"version": "1.0.0",
"description": "Paperlight, a Chrome extension that makes PDFs comfortable to read. It applies gentle color filters to Chrome's built-in PDF viewer, softening the harsh white background into paper-like tones, or flipping the page into a proper dark mode, with an intensity slider to dial the effect in. It can also read PDFs aloud using voices that run entirely on your machine.",
"main": "background.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "node build.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kabir0st/paperlight.git"
},
"keywords": [
"chrome-extension",
"pdf",
"dark-mode",
"read-aloud",
"text-to-speech",
"kokoro",
"accessibility"
],
"author": "Kabir Tamari (https://kabirtamari.com/)",
"license": "ISC",
"type": "module",
"bugs": {
"url": "https://github.com/kabir0st/paperlight/issues"
},
"homepage": "https://github.com/kabir0st/paperlight#readme",
"private": "true",
"devDependencies": {
"esbuild": "^0.28.1"
},
"dependencies": {
"@huggingface/transformers": "^4.2.0",
"pdfjs-dist": "^6.1.200",
"phonemizer": "^1.2.1"
}
}