This repository has been archived by the owner on Sep 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.03 KB
/
package.json
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "undiscord",
"nameFull": "Undiscord",
"version": "6.0.0",
"description": "Delete all messages in a Discord channel or DM (Bulk deletion)",
"userScript": {
"namespace": "https://github.com/VendorAttestation/undiscord-reborn/deleteDiscordMessages",
"match": [
"https://*.discord.com/app",
"https://*.discord.com/channels/*",
"https://*.discord.com/login"
],
"icon": "https://victornpb.github.io/undiscord/images/icon128.png",
"downloadURL": "https://github.com/VendorAttestation/undiscord-reborn/raw/main/deleteDiscordMessages.user.js",
"contributionURL": "https://www.buymeacoffee.com/vitim",
"grant": "none"
},
"license": "MIT",
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VendorAttestation/undiscord-reborn.git"
},
"bugs": {
"url": "https://github.com/VendorAttestation/undiscord-reborn/issues"
},
"homepage": "https://github.com/VendorAttestation/undiscord-reborn",
"author": "victornpb & VendorAttestation",
"main": "deleteDiscordMessages.user.js",
"scripts": {
"start": "npm run watch",
"build": "rollup -c",
"watch": "rollup -c -w",
"prebuild": "rimraf dist",
"test": "npm run lint && npm run build",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"version": "npm run build"
},
"files": [
"dist"
],
"keywords": [
"delete",
"messages",
"discord",
"wipe",
"purge",
"clean",
"bulk"
],
"devDependencies": {
"@rollup/plugin-json": "^6.0.0",
"eslint": "^8.36.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"rimraf": "^4.4.1",
"rollup": "^3.20.2",
"rollup-plugin-baked-env": "^1.0.1",
"rollup-plugin-banner2": "^1.2.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-serve": "^2.0.2",
"tiny-dedent": "^1.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**.js": "npm run lint"
}
}