-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.03 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.03 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
{
"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": "npm run lint -w builder && npm run lint -w userscript"
},
"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",
"packageManager": "[email protected]+",
"workspaces": [
"userscript",
"builder"
]
}