-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.33 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.33 KB
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
{
"name": "@filteringdev/tinyshield",
"version": "0.0.0",
"description": "",
"type": "module",
"scripts": {
"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",
"build:userscript": "tsx builder.ts -- production",
"build": "npm run build:interface && npm run build:userscript",
"debug": "tsx builder.ts -- development",
"lint": "tsc --noEmit && eslint sources/**/*.ts"
},
"keywords": [
"Ad-Shield"
],
"files": [
"dist/**/*"
],
"exports": {
".": {
"import": "./dist/interface.js",
"types": "./dist/types/interface.d.ts"
}
},
"types": "./dist/types/interface.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/FilteringDev/tinyShield.git"
},
"license": "MPL-2.0",
"dependencies": {
"@types/node": "^24.9.2"
},
"devDependencies": {
"@npmcli/package-json": "^7.0.4",
"@types/npmcli__package-json": "^4.0.4",
"@types/semver": "^7.7.1",
"esbuild": "^0.27.0",
"eslint": "^9.38.0",
"semver": "^7.7.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.2",
"zod": "^4.3.5"
},
"packageManager": "npm@11.5.1+"
}