@filteringdev/tinyshield 3.2.2 → 3.4.0-build.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/interface.js +3 -3
- package/dist/interface.js.map +1 -1
- package/dist/tinyShield.user.js +13458 -11402
- package/dist/types/interface.d.ts +1 -1
- package/package.json +10 -21
- /package/dist/types/{src/as-weakmap.d.ts → as-weakmap.d.ts} +0 -0
- /package/dist/types/{src/index.d.ts → index.d.ts} +0 -0
- /package/dist/types/{src/utils.d.ts → utils.d.ts} +0 -0
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@filteringdev/tinyshield",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.4.0-build.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
7
|
-
"build:interface": "esbuild
|
|
8
|
-
"build:userscript": "
|
|
7
|
+
"build:interface": "esbuild userscript/source/interface.ts --bundle --format=esm --splitting --sourcemap --target=es2024 --external:/node_modules --outdir=dist && tsc userscript/source/interface.ts --outDir dist/types --declaration --emitDeclarationOnly --skipLibCheck",
|
|
8
|
+
"build:userscript": "npm run build -w builder -- --minify true --use-cache false --build-type production --SubscriptionUrl https://cdn.jsdelivr.net/npm/@filteringdev/tinyshield@latest/dist/tinyShield.user.js",
|
|
9
9
|
"build": "npm run build:interface && npm run build:userscript",
|
|
10
|
-
"debug": "
|
|
11
|
-
"lint": "
|
|
10
|
+
"debug": "npm run debug -w builder",
|
|
11
|
+
"lint": "npm run lint -w builder && npm run lint -w userscript"
|
|
12
12
|
},
|
|
13
13
|
"keywords": [
|
|
14
14
|
"Ad-Shield"
|
|
@@ -28,20 +28,9 @@
|
|
|
28
28
|
"url": "git+https://github.com/FilteringDev/tinyShield.git"
|
|
29
29
|
},
|
|
30
30
|
"license": "MPL-2.0",
|
|
31
|
-
"
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
"@types/npmcli__package-json": "^4.0.4",
|
|
37
|
-
"@types/semver": "^7.7.1",
|
|
38
|
-
"esbuild": "^0.27.0",
|
|
39
|
-
"eslint": "^9.38.0",
|
|
40
|
-
"semver": "^7.7.3",
|
|
41
|
-
"tsx": "^4.21.0",
|
|
42
|
-
"typescript": "^5.9.3",
|
|
43
|
-
"typescript-eslint": "^8.46.2",
|
|
44
|
-
"zod": "^4.3.5"
|
|
45
|
-
},
|
|
46
|
-
"packageManager": "npm@11.5.1+"
|
|
31
|
+
"packageManager": "npm@11.5.1+",
|
|
32
|
+
"workspaces": [
|
|
33
|
+
"userscript",
|
|
34
|
+
"builder"
|
|
35
|
+
]
|
|
47
36
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|