-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.03 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
{
"name": "atlas",
"version": "0.0.1",
"description": "Discord music bot focused on high sound quality",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node .",
"dev": "nodemon",
"lint:fix": "eslint --fix src/",
"lint": "eslint src/",
"test": "mocha",
"test:watch": "mocha --watch"
},
"engines": {
"node": ">=18.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Gorillas-Team/Atlas.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/Gorillas-Team/Atlas/issues"
},
"homepage": "https://github.com/Gorillas-Team/Atlas#readme",
"devDependencies": {
"dotenv": "^16.0.3",
"eslint": "^8.0.1",
"eslint-config-standard": "latest",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"mocha": "^10.1.0",
"nodemon": "^2.0.20"
},
"dependencies": {
"discord.js": "^14.6.0",
"gorilink": "^1.3.2",
"node-fetch": "^3.3.0"
},
"packageManager": "[email protected]"
}