-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.58 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
{
"name": "discord-tweet-embedder",
"version": "1.0.0",
"description": "Post Embed when you post a tweet URL to Discord.",
"homepage": "https://github.com/tomacheese/discord-tweet-embedder",
"bugs": {
"url": "https://github.com/tomacheese/discord-tweet-embedder/issues"
},
"license": "MIT",
"author": "Tomachi <tomachi@tomacheese.com>",
"private": true,
"main": "dist/main.js",
"repository": {
"url": "git@github.com:tomacheese/discord-tweet-embedder.git",
"type": "git"
},
"scripts": {
"fix": "run-z fix:prettier fix:eslint",
"start": "tsx ./src/main.ts",
"fix:eslint": "eslint . -c eslint.config.mjs --fix",
"fix:prettier": "prettier --write src",
"lint:prettier": "prettier --check src",
"dev": "tsx watch ./src/main.ts",
"lint:eslint": "eslint . -c eslint.config.mjs",
"lint:tsc": "tsc",
"lint": "run-z lint:prettier,lint:eslint,lint:tsc",
"generate-schema": "typescript-json-schema --required src/config.ts ConfigInterface -o schema/Configuration.json"
},
"devDependencies": {
"@book000/eslint-config": "1.7.87",
"@book000/node-utils": "1.13.339",
"@book000/twitterts": "0.71.11",
"@types/node": "20.16.11",
"discord.js": "14.16.3",
"eslint": "9.14.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "17.13.1",
"eslint-plugin-promise": "7.1.0",
"prettier": "3.3.3",
"run-z": "2.1.0",
"tsx": "4.19.2",
"twitter-d": "0.6.0",
"typescript": "5.6.3",
"typescript-json-schema": "0.65.1"
},
"packageManager": "pnpm@9.12.3"
}