-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.19 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.19 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
{
"name": "botanf",
"version": "2.0.0",
"description": "A simple discord bot made by ANF-Studios",
"private": true,
"icon": "./src/images/favicon.ico",
"main": "dist/index.js",
"scripts": {
"start": "tsc && node ./dist/index.js",
"transcompile": "tsc --outDir ./dist/",
"format": "prettier --write \"**/*.{ts,json,md}\"",
"restore": "npm install && npm fund",
"test": "node ./dist/index.js && exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ANF/BotANF.git"
},
"keywords": [
"discord bot",
"anf-studios"
],
"author": {
"name": "ANF-Studios",
"email": "anforg@outlook.com"
},
"license": "GPL-3.0",
"dependencies": {
"discord.js": "^12.5.1",
"dotenv": "^8.2.0",
"mongodb": "^3.6.3"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/mongodb": "^3.6.3",
"@types/node": "^14.14.16",
"prettier": "2.2.1",
"typescript": "^4.1.3"
},
"bugs": {
"url": "https://github.com/ANF/BotANF/issues"
},
"homepage": "https://github.com/ANF/BotANF#readme"
}