This repository has been archived by the owner on Oct 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
80 lines (80 loc) · 2.3 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
75
76
77
78
79
80
{
"name": "better-erela.js-spotify",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"description": "A better version of erela.js-spotify plugin",
"version": "1.3.11",
"devDependencies": {
"@babel/core": "7.19.3",
"@babel/preset-env": "7.19.3",
"@babel/preset-typescript": "7.18.6",
"@hazmi35/eslint-config": "8.5.1",
"@types/jest": "28.1.8",
"@types/node": "17.0.14",
"@typescript-eslint/eslint-plugin": "5.39.0",
"@typescript-eslint/parser": "5.39.0",
"babel-jest": "28.1.3",
"eslint": "8.25.0",
"gen-esm-wrapper": "^1.1.3",
"jest": "28.1.3",
"rimraf": "3.0.2",
"ts-node": "10.9.1",
"typescript": "4.8.4"
},
"license": "MIT",
"author": {
"name": "KagChi"
},
"repository": {
"url": "https://github.com/NezuChan/better-erela.js-spotify"
},
"homepage": "https://better-erela.js-spotify.kagchi.my.id",
"scripts": {
"compile": "rimraf dist && tsc && gen-esm-wrapper ./dist/index.js ./dist/index.mjs",
"docs": "typedoc",
"lint": "eslint src/**/**.ts --ignore-path .gitignore",
"lint:fix": "eslint src/**/**.ts --ignore-path .gitignore --fix",
"test": "jest --detectOpenHandles --forceExit"
},
"dependencies": {
"undici": "^5.11.0"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"parserOptions": {
"project": "./tsconfig.json"
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"@hazmi35/eslint-config/typescript"
],
"rules": {
"sort-keys": 0,
"@typescript-eslint/naming-convention": 0,
"@typescript-eslint/member-ordering": 0,
"@typescript-eslint/return-await": 0,
"@typescript-eslint/restrict-template-expressions": 0,
"prefer-named-capture-group": 0,
"no-useless-escape": 0,
"@typescript-eslint/no-unnecessary-condition": 0,
"@typescript-eslint/prefer-optional-chain": 0,
"max-len": 0,
"no-negated-condition": 0,
"class-methods-use-this": 0,
"@typescript-eslint/no-shadow": 0,
"@typescript-eslint/prefer-nullish-coalescing": 0
},
"ignorePatterns": []
}
}