generated from NanoWorkspace/module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.17 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
{
"name": "@ghom/nano-autorole",
"author": "ghom",
"license": "ISC",
"version": "1.0.0",
"description": "Auto-role module for Nano",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": false,
"useTabs": false
},
"scripts": {
"prettier": "prettier src package.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",
"reaction-role",
"nano-bot"
],
"devDependencies": {
"@types/node": "^14.0.27",
"@types/ws": "^7.2.6",
"prettier": "^2.0.5",
"typescript": "4.0.2"
},
"engines": {
"node": "v14.3.0",
"npm": "6.14.7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NanoWorkspace/module-template.git"
},
"dependencies": {
"@ghom/nano-bot": "^1.10.9-beta",
"enmap": "^5.7.1"
}
}