-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 866 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 866 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "fedi-admin-scripts",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "Small collection of scripts, tools, and queries meant for use by fediverse system administrators.",
"author": "Hazelnoot",
"scripts": {
"import-blocklist": "tsc -b && node dist/blocklist-import/importBlocklist.js",
"pack-for-misskey": "tsc -b && node dist/pack-for-misskey/packForMisskey.js",
"blocklist-diff": "tsc -b && node dist/blocklist-diff/blocklistDiff.js",
"blocklist-download": "tsc -b && node dist/blocklist-download/blocklistDownload.js",
"bulk-refresh-users": "node src/bulk-refresh-users/bulk-refresh-users.mjs"
},
"license": "GPLv3",
"devDependencies": {
"@types/node": "^20.11.28",
"typescript": "^5.4.2",
"undici-types": "^6.9.0"
},
"dependencies": {
"node-stream-zip": "^1.15.0"
}
}