-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.12 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.12 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
{
"name": "nano-template",
"author": "ghom",
"license": "ISC",
"version": "1.0.0",
"description": "Discord bot template in TypeScript using Nano.",
"main": "dist/index.js",
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": false,
"useTabs": false
},
"scripts": {
"prettier": "prettier src package.json nano.config.json readme.md tsconfig.json --write",
"build": "git rm -r --ignore-unmatch -f ./dist && npm run prettier && tsc",
"start": "npm run build && node .",
"precommit": "npm run prettier && git add *",
"commit": "git commit -m continue",
"push": "npm run commit && git push origin master"
},
"keywords": [
"discord.js",
"bot",
"typescript",
"template",
"nano-bot"
],
"devDependencies": {
"@types/node": "^14.0.27",
"@types/ws": "^7.2.6",
"prettier": "^2.0.5",
"typescript": "4.0.2"
},
"dependencies": {
"@ghom/nano-bot": "^1.10.10-beta",
"@ghom/nano-reactionrole": "^1.0.1",
"@ghom/nano-autorole": "^1.0.0",
"@ghom/nano-paginator": "^1.0.0",
"querystring": "0.2.0"
}
}