forked from stegripe/rawon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.18 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
81
82
83
84
85
86
87
{
"name": "rawon",
"version": "3.1.0",
"description": "A simple powerful Discord music bot built to fulfill your production desires. Easy to use, with no coding required.",
"main": "index.js",
"type": "module",
"scripts": {
"build": "npm run lint && npm run compile",
"compile": "npx swc src -d dist",
"tscompile": "tsc --build tsconfig.json",
"lint": "eslint . --ignore-path .gitignore --ext .ts",
"lint:fix": "eslint . --ignore-path .gitignore --ext .ts --fix",
"pretty": "prettier --check src/**/*.ts",
"pretty:write": "prettier --write src/**/*.ts",
"start": "node --es-module-specifier-resolution=node -r dotenv/config .",
"start:dev": "rimraf ./dist && npm run compile && npm start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Clytage/rawon.git"
},
"author": "Clytage <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/Clytage/rawon/issues"
},
"homepage": "https://github.com/Clytage/rawon#readme",
"engines": {
"node": ">=16.6.0",
"npm": ">=7.0.0"
},
"eslintConfig": {
"extends": [
"@clytage-pkg/eslint-config/typescript",
"prettier"
],
"plugins": [
"prettier"
],
"ignorePatterns": [
"dist/*",
"index.js",
"yt-dlp-utils/"
],
"rules": {
"@typescript-eslint/no-extra-parens": "off"
}
},
"prettier": {
"tabWidth": 4,
"trailingComma": "none",
"arrowParens": "avoid",
"printWidth": 120
},
"dependencies": {
"@discordjs/voice": "^0.14.0",
"@swc/cli": "0.1.62",
"@swc/core": "1.3.36",
"date-fns": "2.29.3",
"discord.js": "14.7.1",
"dotenv": "16.0.3",
"got": "12.5.3",
"i18n": "0.15.1",
"opusscript": "0.0.8",
"prism-media": "1.3.4",
"soundcloud.ts": "0.4.9",
"tslib": "2.5.0",
"tweetnacl": "1.0.3",
"youtubei": "1.1.2"
},
"devDependencies": {
"@clytage-pkg/eslint-config": "1.6.0",
"@types/i18n": "0.13.6",
"@types/node": "18.14.1",
"@typescript-eslint/eslint-plugin": "5.53.0",
"@typescript-eslint/parser": "5.53.0",
"eslint": "8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.4",
"rimraf": "^4.1.2",
"typescript": "4.9.5"
},
"optionalDependencies": {
"play-dl": "^1.9.6"
}
}