-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 1.56 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": "discord-transcript-generator",
"version": "1.1.2",
"description": "A command-line utility to generate transcripts from a Discord channel",
"license": "MIT",
"author": "Kai Cataldo <kai@kaicataldo.com>",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/kaicataldo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kaicataldo/discord-transcript-generator.git"
},
"bugs": {
"url": "https://github.com/kaicataldo/discord-transcript-generator/issues"
},
"homepage": "https://github.com/kaicataldo/discord-transcript-generator#readme",
"keywords": [
"discord",
"cli",
"command",
"line",
"utility",
"transcribe",
"transcription",
"meeting",
"meetings"
],
"engines": {
"node": ">=14"
},
"main": "lib/index.js",
"files": [
"bin",
"lib",
"LICENSE",
"README.md"
],
"bin": {
"generate-discord-transcript": "./bin/generate-discord-transcript.js"
},
"scripts": {
"lint": "eslint .",
"format": "prettier '**/*.js' --write"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"discord.js": "^12.2.0",
"yargs": "^15.4.1"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.1",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-node": "^11.1.0",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1"
}
}