-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.03 KB
/
Copy pathpackage.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": "telegram-ad-filter",
"version": "1.5.1",
"description": "Userscript that minimizes messages containing words from the list",
"author": "VChet",
"license": "MIT",
"packageManager": "pnpm@11.22.0",
"type": "module",
"homepage": "https://github.com/VChet/telegram-ad-filter#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/VChet/telegram-ad-filter.git"
},
"bugs": {
"url": "https://github.com/VChet/telegram-ad-filter/issues"
},
"scripts": {
"dev": "tsdown --watch",
"build": "tsdown",
"lint:ts": "tsc",
"lint:js": "eslint .",
"lint:js:fix": "npm run lint:js -- --fix",
"lint:all": "npm run lint:ts && npm run lint:js",
"release": "commit-and-tag-version"
},
"devDependencies": {
"@types/node": "^26.2.0",
"@types/tampermonkey": "^5.0.5",
"commit-and-tag-version": "^13.1.2",
"eslint": "^10.8.1",
"eslint-plugin-userscripts": "^0.5.6",
"neostandard": "0.14.0-next.1",
"tsdown": "^0.22.14",
"typescript": "^6.0.3"
}
}