-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
50 lines (50 loc) · 1.55 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
{
"name": "om",
"version": "0.5.1",
"description": "TTS Bot for Discord.js Japan User Group",
"type": "module",
"main": "dist/main.js",
"scripts": {
"dev": "node --import=tsx --env-file=.env src/main.ts",
"build": "node scripts/build.js",
"start": "node dist/main.js",
"check": "run-s -c *:check",
"fix": "run-s -c *:fix",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"type:check": "tsc --noEmit",
"lint:check": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "node .husky/install.mjs",
"test": "node --import=tsx --test --watch src/**/*.test.ts",
"test:ci": "node --import=tsx --test src/**/*.test.ts"
},
"author": "Discord.js Japan User Group (discordjs-japan.org)",
"license": "MIT",
"devDependencies": {
"@eslint/js": "9.19.0",
"@types/eslint__js": "8.42.3",
"@types/eslint-config-prettier": "6.11.3",
"@types/node": "22.10.10",
"esbuild": "0.24.2",
"esbuild-plugin-version-injector": "1.2.1",
"eslint": "9.19.0",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-import-x": "4.6.1",
"globals": "15.14.0",
"husky": "9.1.7",
"lint-staged": "15.4.2",
"npm-run-all2": "7.0.2",
"prettier": "3.4.2",
"tsx": "4.19.2",
"typescript": "5.7.3",
"typescript-eslint": "8.21.0"
},
"dependencies": {
"@discordjs-japan/om-syrinx": "github:discordjs-japan/om-syrinx#v0.4.1",
"@discordjs/voice": "0.18.0",
"discord-markdown-parser": "1.1.0",
"discord.js": "14.17.3",
"simple-markdown": "0.7.3"
}
}