-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.33 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
{
"name": "llyrics",
"version": "1.1.7",
"description": "A simple package to fetch lyrics from Genius API",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"module": "dist/src/index.mjs",
"files": [
"dist"
],
"scripts": {
"format": "prettier --write ./src/index.ts",
"lint": "eslint src --ext .ts",
"build": "rimraf dist && tsc && gen-esm-wrapper dist/src/index.js dist/src/index.mjs",
"docs": "ts-docs",
"fix": "eslint src --ext .ts --fix",
"test": "ts-node ./test/index.test.ts"
},
"author": "LewdHuTao",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/shittybot/llyrics.git"
},
"keywords": [
"lyrics finder",
"lyrics",
"discord bot",
"discord.js",
"genius api",
"musixmatch",
"youtube lyrics"
],
"bugs": {
"url": "https://github.com/shittybot/llyrics/issues"
},
"homepage": "https://github.com/shittybot/llyrics#readme",
"devDependencies": {
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"gen-esm-wrapper": "^1.1.3",
"prettier": "^3.2.5",
"rimraf": "^4.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"axios": "^1.7.2"
}
}