-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 921 Bytes
/
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
{
"name": "shoukaku-spotify",
"version": "4.3.0",
"description": "Spotify album, playlist, and track resolver for Lavalink.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"lint": "eslint --ignore-path .gitignore \"**/*.ts\"",
"lint:fix": "yarn lint --fix",
"test": "yarn lint && yarn build",
"release": "standard-version",
"docs": "typedoc"
},
"repository": "https://github.com/rajamoulimallareddy/shoukaku-spotify",
"author": "Allvaa",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^8.26.0",
"standard-version": "^9.5.0",
"typedoc": "^0.23.15",
"typescript": "^4.8.4"
},
"dependencies": {
"spotify-url-info": "^3.1.9",
"undici": "^5.12.0"
}
}