-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
70 lines (70 loc) · 2.5 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
64
65
66
67
68
69
70
{
"name": "reddit-mobile-friendly",
"version": "1.1.0",
"description": "",
"main": "none",
"scripts": {
"wp-watch": "webpack --watch --mode=development",
"wp-watch-prod": "webpack --watch --mode=production",
"wp-build": "webpack",
"wp-build-ff": "webpack --env BROWSER=firefox",
"wext-lint": "web-ext lint -s dist",
"mobile-run": "node dev/serve.mjs",
"desktop-run": "web-ext run -f firefoxdeveloperedition -p oldlander-test --keep-profile-changes --start-url https://old.reddit.com/r/cromch --source-dir ./dist",
"dev": "run-p wp-watch desktop-run",
"dev-mobile": "run-p wp-watch mobile-run",
"dev-mobile-preprod": "run-p wp-watch-prod mobile-run",
"package:chrome": "crx3 dist -p cert.pem -o oldlander.crx -x updates.xml",
"make:chrome": "run-s wp-build wext-lint package:chrome",
"package:firefox": "web-ext build -o -s dist",
"sign:firefox": "dotenv web-ext sign -s dist --channel=unlisted",
"sign-public:firefox": "dotenv web-ext -s dist sign || true",
"make:firefox": "run-s wp-build-ff wext-lint sign:firefox",
"make:firefox-public": "run-s wp-build-ff wext-lint sign-public:firefox",
"make:firefox-zip": "run-s wp-build-ff wext-lint package:firefox",
"make:user.js": "webpack --env BROWSER=user.js",
"act": "gh act --matrix make_target:firefox-zip"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OctoNezd/old-reddit-mobile.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/OctoNezd/old-reddit-mobile/issues"
},
"homepage": "https://github.com/OctoNezd/old-reddit-mobile#readme",
"dependencies": {
"@fontsource/roboto": "^5.0.13",
"@types/webextension-polyfill": "^0.10.7",
"crx3": "^1.1.3",
"dashjs": "^4.7.4",
"immutable": "^5.0.0-beta.5",
"lightgallery": "^2.7.2",
"localforage": "^1.10.0",
"material-symbols": "^0.17.4",
"swiped-events": "^1.2.0",
"web-ext": "^7.11.0"
},
"devDependencies": {
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.1",
"dotenv": "^16.4.5",
"dotenv-cli": "^7.4.2",
"generate-json-webpack-plugin": "^2.0.0",
"jsonwebtoken": "^9.0.2",
"node-fetch": "^3.3.2",
"npm-run-all": "^4.1.5",
"sass": "^1.77.1",
"sass-loader": "^14.2.1",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"typescript": "^5.4.5",
"video.js": "^8.14.0",
"webextension-polyfill": "^0.11.0",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"packageManager": "yarn@3.6.0"
}