This repository has been archived by the owner on Jun 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
74 lines (74 loc) · 2.13 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
68
69
70
71
72
73
74
{
"name": "@codyduong/ytmusicapi",
"version": "0.5.0-rc.1",
"description": "Unofficial API for YouTube Music",
"main": "dist/index.js",
"browser": "dist/index.browser.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "yarn jest --verbose",
"test:pylib": "yarn jest pylib --verbose",
"test:code": "yarn lint && yarn tsc --noEmit",
"docs": "yarn tsc && yarn jsdoc dist/ -r -c ./jsdoc.json --verbose",
"ci": "yarn install --frozen-lockfile",
"lint": "prettier \"./src/**/*{ts, tsx}\" && eslint \"./src/**/*{ts,tsx}\" -c \".eslintrc.js\"",
"lint:fix": "prettier --write \"./src/**/*{ts, tsx}\" && eslint \"./src/**/*{ts,tsx}\" --fix -c \".eslintrc.js\"",
"build": "tsc"
},
"author": "Cody Duong",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^17.0.18",
"@types/utf8": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"clean-jsdoc-theme": "^3.3.3",
"configparser": "^0.3.9",
"eslint": "^7.32.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.2.0",
"jest": "^27.5.1",
"jsdoc": "^3.6.10",
"prettier": "^2.4.1",
"prettier-eslint-cli": "^5.0.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.5.0",
"typescript": "^4.6.2"
},
"dependencies": {
"@codyduong/nav": "^0.2.0",
"axios": "^0.26.0",
"case-insensitive-object": "^0.1.4",
"i18next": "^21.6.13",
"prompt-sync": "^4.2.0",
"type-fest": "^2.12.0",
"utf8": "^3.0.0"
},
"files": [
"dist/*/**.*.ts",
"dist/**.*.ts",
"dist/**.js",
"dist/*/**.js",
"dist/locales/**.json",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/codyduong/ytmusicapiJS.git"
},
"bugs": {
"url": "https://github.com/codyduong/ytmusicapiJS/issues"
},
"homepage": "https://github.com/codyduong/ytmusicapiJS#readme",
"keywords": [
"YouTube Music API",
"YTM API",
"YTM",
"Youtube Music"
]
}