-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.13 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
70
71
72
{
"name": "royalrefresh",
"version": "1.3.1",
"description": "A web extension for royalroad.com. For people who juggle multiple stories",
"main": "background.js",
"directories": {
"doc": "docs"
},
"type": "module",
"scripts": {
"dev": "wxt",
"dev:firefox": "wxt -b firefox",
"dev:android": "node scripts/dev-android.js",
"build": "wxt build",
"build:firefox": "wxt build -b firefox",
"zip": "wxt zip",
"zip:firefox": "wxt zip -b firefox",
"check": "svelte-check --tsconfig ./tsconfig.json",
"postinstall": "wxt prepare",
"lint": "pnpm build && web-ext lint --source-dir .output/firefox-mv2",
"test": "playwright test --reporter=list",
"test:ui": "playwright test --ui",
"test:detailed": "playwright test",
"format": "prettier --write src/",
"format:check": "prettier --check src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Seismix/royalrefresh.git"
},
"keywords": [
"royal",
"road",
"recap",
"read",
"webnovel",
"web",
"extension"
],
"author": "Seismix",
"license": "MIT",
"bugs": {
"url": "https://github.com/Seismix/royalrefresh/issues"
},
"homepage": "https://github.com/Seismix/royalrefresh#readme",
"devDependencies": {
"@playwright/test": "^1.52.0",
"@tsconfig/svelte": "^5.0.4",
"@types/firefox-webext-browser": "^120.0.4",
"@types/node": "^22.14.1",
"@types/webextension-polyfill": "^0.12.3",
"@wxt-dev/module-svelte": "^2.0.3",
"prettier": "^3.5.3",
"prettier-plugin-svelte": "^3.4.0",
"svelte": "^5.38.0",
"svelte-check": "^4.1.6",
"tslib": "^2.8.1",
"typescript": "^5.8.3",
"web-ext": "^8.5.0",
"webextension-polyfill": "^0.12.0",
"wxt": "^0.20.7"
},
"pnpm": {
"overrides": {
"image-size": "^2.0.2",
"@babel/runtime": "^7.26.10"
}
},
"dependencies": {
"dompurify": "^3.2.6"
}
}