-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 1.87 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
{
"name": "mastodont",
"version": "0.1.12",
"description": "CLI tool to import server blocklists into Mastodon v4+",
"main": "index.js",
"bin": "index.js",
"type": "module",
"scripts": {
"build": "node esbuild.js; chmod +x dist/index.js",
"dev": "tsc && DEBUG=* node --es-module-specifier-resolution node dist",
"format": "prettier -w ./src",
"lint": "eslint . --ext .ts --fix",
"tsc:check": "tsc --noEmit",
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "if $(git rev-parse --is-inside-work-tree); then husky install; fi"
},
"repository": {
"type": "git",
"url": "git+https://github.com/selfagency/mastodont.git"
},
"keywords": [
"mastodon",
"fediverse",
"moderation",
"blocklist",
"filter"
],
"author": "Daniel Sieradski <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/selfagency/mastodont/issues"
},
"lint-staged": {
"src/**/*.ts": [
"prettier --write",
"eslint --fix"
]
},
"homepage": "https://github.com/selfagency/mastodont#readme",
"devDependencies": {
"@thi.ng/args": "^2.2.8",
"@types/node": "^18.11.9",
"@types/prompts": "^2.4.1",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"consola": "^2.15.3",
"esbuild": "^0.15.15",
"esbuild-plugin-clean": "^1.0.1",
"esbuild-plugin-copy-file": "^0.0.2",
"esbuild-plugin-fileloc": "^0.0.6",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"husky": "^8.0.2",
"is-url-superb": "^6.1.0",
"lint-staged": "^13.0.3",
"node-fetch": "^3.3.0",
"open": "^8.4.0",
"ora": "^6.1.2",
"prettier": "^2.7.1",
"prompts": "^2.4.2",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.9.3",
"yaml": "^2.1.3"
}
}