forked from Lunarequest/NightPDF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.81 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "nightpdf",
"version": "v3.0.0-beta2",
"description": "Dark Mode for PDFs",
"main": "out/main/app.js",
"packageManager": "yarn@4.0.2",
"repository": "https://github.com/Lunarequest/NightPDF",
"homepage": "https://github.com/Lunarequest/NightPDF#readme",
"bugs": {
"url": "https://github.com/Lunarequest/NightPDF/issues",
"email": "nullrequest@vivaldi.net"
},
"scripts": {
"typecheck": "tsc --noEmit",
"build": "rimraf out && tsx ./build.mts",
"dev": "yarn typecheck && yarn build && DEBUG=1 electron .",
"dist": "NODE_ENV='production' NODE_OPTIONS='--max-old-space-size=4096' yarn build && NODE_ENV='production' NODE_OPTIONS='--max-old-space-size=4096' electron-builder --config electron-builder-config.js",
"lint": "biome check .",
"format": "biome format . --write",
"ci": "biome ci .",
"pre-commit": "yarn ci",
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable"
},
"author": {
"name": "Lunarequest",
"email": "nullrequest@vivaldi.net"
},
"license": "GPL-2.0-only",
"devDependencies": {
"@biomejs/biome": "^1.4.1",
"@types/copy": "^0.3.5",
"@types/figlet": "^1.5.8",
"@types/node": "^20.10.4",
"@types/yargs": "^17.0.32",
"chalk": "^5.3.0",
"copy": "^0.3.2",
"cssnano": "^6.0.2",
"cssnano-preset-advanced": "^6.0.2",
"electron": "^28.0.0",
"electron-builder": "^24.10.0",
"esbuild": "^0.19.9",
"esbuild-plugin-glob": "^2.2.3",
"figlet": "^1.7.0",
"husky": "^8.0.3",
"pinst": "^3.0.0",
"postcss": "^8.4.32",
"rimraf": "^5.0.5",
"sass": "^1.69.5",
"tsx": "^4.6.2",
"typescript": "^5.3.3"
},
"dependencies": {
"electron-log": "^5.0.1",
"electron-store": "^8.1.0",
"electron-tabs": "^1.0.2",
"electron-updater": "6.1.7",
"json-schema-typed": "8.0.1",
"nouislider": "^15.7.1",
"yargs": "^17.7.2"
}
}