-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 923 Bytes
/
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
{
"name": "@statio/utils",
"version": "1.0.1",
"main": "dist/lib.js",
"typings": "dist/lib.d.ts",
"repository": "https://github.com/statiohq/utils.git",
"author": "OfficialCRUGG <ich@crugg.de>",
"license": "MIT",
"private": false,
"scripts": {
"build": "rimraf dist && tsc",
"build:docs": "typedoc --out docs src/lib.ts",
"prettier": "prettier --write src",
"prettier:ci": "prettier --check src"
},
"files": [
"dist/*"
],
"keywords": [
"nodejs",
"api",
"utilities",
"library",
"typescript",
"statio"
],
"dependencies": {
"chalk": "4.1.2",
"discord.js": "^13.3.1"
},
"devDependencies": {
"@types/node": "^16.11.10",
"prettier": "^2.5.0",
"rimraf": "^3.0.2",
"typedoc": "^0.22.10",
"typescript": "^4.5.2"
}
}