This repository has been archived by the owner on Dec 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
72 lines (72 loc) · 2.83 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
71
72
{
"name": "chromeshack",
"version": "1.78.0",
"description": "Collection of scripts for Shacknews.",
"repository": "/~https://github.com/latestchatty/chromeshack",
"type": "module",
"scripts": {
"generate-licenses": "node utils/generateLicenses.js",
"generate-cookie": "node utils/testlogin.js",
"pkgsrc": "node utils/package.js && cp -rf dist dist-firefox artifacts/",
"build:serviceWorker": "vite build --config vite.serviceWorker.config.ts",
"build:content": "vite build --config vite.content.config.ts",
"build:popup": "vite build --config vite.popup.config.ts",
"build:permissions": "vite build --config vite.permissions.config.ts",
"build:js": "run-p build:serviceWorker build:content build:popup build:permissions",
"clean": "rm -rf dist-firefox/* dist/* artifacts/dist/* artifacts/dist-firefox/*",
"dev:crxjs": "vite dev",
"dev:firefoxjs": "NODE_ENV=development run-p build:js",
"dev": "run-s clean lint && tsc && run-p dev:crxjs dev:firefoxjs",
"build:crxjs": "vite build",
"build:ffxcrxjs": "run-s build:js",
"build": "run-s clean lint && tsc && run-p build:crxjs build:ffxcrxjs",
"build:pkg": "run-s build pkgsrc",
"test:deps": "playwright install chromium --with-deps",
"test": "playwright test",
"pretty": "prettier -w ./src/*.html ./src/styles/*.css ./public/*.html",
"lint": "biome lint .",
"lint:fix": "biome check --apply .",
"format": "run-s pretty && biome format --write ."
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-regular-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"dompurify": "^3.1.7",
"embla-carousel-react": "8.3.0",
"html-react-parser": "^4.2.10",
"lodash.isequal": "^4.5.0",
"lz-string": "^1.5.0",
"preact": "^10.24.3",
"prop-types": "15.8.1",
"text-field-edit": "^4.1.1",
"ts-debounce": "^4.0.0",
"xss": "^1.0.15",
"zustand": "^4.5.5"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@crxjs/vite-plugin": "2.0.0-beta.26",
"@playwright/test": "^1.48.1",
"@preact/preset-vite": "^2.9.1",
"@types/chrome": "^0.0.246",
"@types/dompurify": "^3.0.5",
"@types/jquery": "^3.5.31",
"@types/lodash.isequal": "^4.5.8",
"@types/node": "^22.7.7",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"adm-zip": "^0.5.16",
"dotenv": "^16.4.5",
"embla-carousel": "8.3.0",
"glob": "^10.4.5",
"jest": "^29.7.0",
"license-checker": "^25.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"vite": "^5.4.9"
},
"packageManager": "pnpm@9.5.0+sha512.140036830124618d624a2187b50d04289d5a087f326c9edfc0ccd733d76c4f52c3a313d4fc148794a2a9d81553016004e6742e8cf850670268a7387fc220c903"
}