-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.39 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.39 KB
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
{
"name": "@ratinchat/parrot.js",
"version": "0.7.1",
"description": "The simple framework for advanced bots",
"main": "src/index.js",
"type": "module",
"scripts": {
"website": "docsify serve docs",
"lint": "eslint src",
"pretty": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/PenguDevelopment/parrot.js.git"
},
"keywords": [
"discord.js",
"framework",
"discord",
"parrot.js",
"parrot"
],
"contributors": [
"ratinchat",
"proudparrot2"
],
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/PenguDevelopment/parrot.js/issues"
},
"homepage": "https://parrot.js.org",
"files": [
"src",
"README.md"
],
"dependencies": {
"@discordjs/voice": "^0.16.0",
"better-sqlite3": "^9.2.2",
"boxen": "^7.1.1",
"discord.js": "^14.11.0",
"libsodium-wrappers": "^0.7.13",
"package-json": "^8.1.1",
"play-dl": "^1.9.7",
"semver-diff": "^4.0.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.22.9",
"@babel/plugin-syntax-import-assertions": "^7.22.5",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.1.1",
"prettier": "3.0.0"
},
"typings": "src/types/index.d.ts"
}