This repository has been archived by the owner on Nov 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 2.63 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
{
"name": "@list-kr/microshield",
"version": "4.12.9",
"description": "",
"type": "module",
"scripts": {
"build": "pnpm bundle && pnpm bundle:iosblocker && pnpm bundle:iosrecovery",
"shortwave:cache": "OUTPUT=$(readlink -f ./sources/src/__generated__/shortwave.cache.ts) node sources/scripts/generateShortwaveCache.mjs",
"ztinywave:cache": "OUTPUT=$(readlink -f ./sources/src/__generated__/ztinywave.cache.ts) node sources/scripts/generateTinywaveCache.mjs",
"bundle": "esbuild sources/src/index.ts --bundle --minify-whitespace --minify-syntax --define:global=window --inject:./sources/esbuild.inject.ts --banner:js=\"$(cat ./sources/banner.txt)\" --target=es2022,chrome109,safari16,firefox115 --outfile=./dist/microShield.user.js",
"bundle:iosblocker": "esbuild sources/src/index-ios-blocker.ts --bundle --minify-whitespace --minify-syntax --define:global=window --inject:./sources/esbuild.inject.ts --banner:js=\"$(cat ./sources/banner-ios-blocker.txt)\" --target=es2022,chrome109,safari16,firefox115 --outfile=./dist/microShield-ios-blocker.user.js",
"bundle:iosrecovery": "esbuild sources/src/index-ios-recovery.ts --bundle --minify-whitespace --minify-syntax --define:global=window --inject:./sources/esbuild.inject.ts --banner:js=\"$(cat ./sources/banner-ios-recovery.txt)\" --target=es2022,chrome109,safari16,firefox115 --outfile=./dist/microShield-ios-recovery.user.js",
"debug": "esbuild sources/src/index.ts --bundle --define:global=window --inject:./sources/esbuild.inject.ts --banner:js=\"$(cat ./sources/banner.txt)\" --target=es2022,chrome109,safari16,firefox115 --outfile=./dist/microShield-debug.user.js",
"lint": "tsc --noEmit && eslint sources"
},
"keywords": [],
"files": [
"dist"
],
"author": {
"name": "PiQuark6046",
"email": "[email protected]",
"url": "https://github.com/PiQuark6046"
},
"repository": {
"type": "git",
"url": "https://github.com/List-KR/microShield"
},
"contributors": [
{
"name": "HoJeong Go",
"email": "[email protected]",
"url": "https://github.com/seia-soto"
},
{
"name": "green1052",
"url": "https://github.com/green1052"
},
{
"name": "Adguard Software Ltd.",
"url": "https://adguard.com/"
}
],
"license": "Apache-2.0",
"dependencies": {
"@list-kr/microshield-token-parser": "^2.0.3",
"@types/node": "^22.5.4",
"crypto-random-string": "^5.0.0",
"error-stack-parser": "^2.1.4",
"parse-domain": "^8.2.2"
},
"devDependencies": {
"esbuild": "^0.23.1",
"eslint": "^9.9.1",
"pnpm": "^9.9.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.4.0"
}
}