-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.52 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
{
"name": "royalrefresh",
"version": "1.0.0",
"description": "A web extension for royalroad.com. For people who juggle multiple stories",
"main": "background.js",
"directories": {
"doc": "docs"
},
"type": "module",
"scripts": {
"dev": "vite dev",
"dev:chrome": "TARGET=chrome vite dev",
"dev:verbose": "pnpm dev --verbose",
"lint": "pnpm build && web-ext lint --source-dir dist/firefox",
"build": "vite build",
"build:chrome": "TARGET=chrome vite build",
"test": "playwright test --reporter=list",
"test:ui": "playwright test --ui",
"test:detailed": "playwright test"
},
"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.47.2",
"@types/firefox-webext-browser": "^120.0.4",
"@types/node": "^22.7.4",
"@types/webextension-polyfill": "^0.12.1",
"typescript": "^5.6.2",
"web-ext": "^8.3.0",
"webextension-polyfill": "^0.12.0"
},
"dependencies": {
"vite": "^5.4.8",
"vite-plugin-web-extension": "^4.2.0"
}
}