This repository has been archived by the owner on Dec 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 2.45 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
{
"name": "@list-kr/microshield",
"version": "4.12.10",
"description": "",
"type": "module",
"scripts": {
"build": "npm run bundle && npm run bundle:iosblocker && npm run 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.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.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": "piquark6046@proton.me",
"url": "https://github.com/PiQuark6046"
},
"repository": {
"type": "git",
"url": "https://github.com/List-KR/microShield"
},
"contributors": [
{
"name": "HoJeong Go",
"email": "seia@outlook.kr",
"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": {
"@types/node": "^22.10.2"
},
"devDependencies": {
"esbuild": "^0.24.0",
"eslint": "^9.16.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0"
}
}