-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.24 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
50
{
"name": "@ghom/nano-bot",
"author": "ghom",
"license": "ISC",
"version": "v1.10.18-beta",
"description": "Discord bot core in TypeScript.",
"main": "dist/index.js",
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": false,
"useTabs": false
},
"scripts": {
"prettier": "prettier src scripts package.json assets/schemas readme.md tsconfig.json --write",
"build": "git rm -r --ignore-unmatch -f ./dist && npm run prettier && tsc",
"precommit": "node scripts/pre-commit && npm run prettier && git add *",
"commit": "git commit -m \"patch core to v1.10.18-beta\"",
"push": "npm run commit && git push origin master"
},
"keywords": [
"discord.js",
"bot",
"typescript",
"handler",
"command-handler"
],
"engines": {
"node": "v14.3.0",
"npm": "6.14.7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NanoWorkspace/core.git"
},
"devDependencies": {
"@types/node": "^14.0.27",
"@types/ws": "^7.2.6",
"prettier": "^2.0.5",
"typescript": "4.0.2"
},
"dependencies": {
"better-sqlite3": "7.1.0",
"chalk": "4.1.0",
"discord.js": "12.3.1",
"dotenv": "8.2.0",
"enmap": "^5.7.1"
}
}