forked from stegripe/rawon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.24 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.2.1",
"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 . --cache --cache-file .eslintcache --ignore-path .gitignore --ext .ts",
"lint:fix": "eslint . --cache --cache-file .eslintcache --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": "AGPL-3.0",
"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/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.16.0",
"@swc/cli": "0.1.62",
"@swc/core": "1.3.93",
"date-fns": "2.30.0",
"discord.js": "14.13.0",
"dotenv": "16.3.1",
"got": "13.0.0",
"i18n": "0.15.1",
"opusscript": "0.0.8",
"prism-media": "1.3.5",
"soundcloud.ts": "^0.5.2",
"tslib": "2.6.2",
"tweetnacl": "1.0.3",
"youtubei": "1.1.2"
},
"devDependencies": {
"@clytage/eslint-config": "^3.0.1",
"@types/i18n": "0.13.7",
"@types/node": "18.18.5",
"@typescript-eslint/eslint-plugin": "6.10.0",
"@typescript-eslint/parser": "6.10.0",
"eslint": "8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"typescript": "5.2.2"
},
"optionalDependencies": {
"play-dl": "^1.9.7"
}
}