@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.
@@ -7,4 +7,4 @@
7
7
  * Contributors:
8
8
  * - See Git history at https://github.com/FilteringDev/tinyShield for detailed authorship information.
9
9
  */
10
- export { RunTinyShieldUserscript } from './src/index.js';
10
+ export { RunTinyShieldUserscript } from './index.js';
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@filteringdev/tinyshield",
3
- "version": "3.2.2",
3
+ "version": "3.4.0-build.0",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "scripts": {
7
- "build:interface": "esbuild sources/interface.ts --bundle --format=esm --splitting --sourcemap --target=es2024 --external:/node_modules --outdir=dist && tsc sources/interface.ts --outDir dist/types --declaration --emitDeclarationOnly",
8
- "build:userscript": "tsx builder.ts -- production",
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": "tsx builder.ts -- development",
11
- "lint": "tsc --noEmit && eslint sources/**/*.ts"
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
- "dependencies": {
32
- "@types/node": "^24.9.2"
33
- },
34
- "devDependencies": {
35
- "@npmcli/package-json": "^7.0.4",
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