-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.65 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@4lch4/narb",
"displayName": "NARB",
"version": "0.0.0",
"description": "A Discord bot for scheduling reminders/notifications.",
"main": "./dist/main.js",
"exports": "./dist/main.js",
"types": "./dist/main.d.ts",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/4lch4/NARB",
"scripts": {
"start": "node dist/main.js",
"build": "tsc && tsc-alias",
"pretty": "prettier --write .",
"lint": "prettier -c .",
"test": "echo 'There are currently no tests available.'",
"scan": "snyk monitor && snyk code test"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"keywords": [
"NARB"
],
"repository": {
"type": "git",
"url": "[email protected]/4lch4/NARB.git"
},
"author": {
"name": "4lch4",
"email": "[email protected]",
"url": "https://4lch4.com"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/4lch4/NARB/issues"
},
"dependencies": {
"@4lch4/logger": "^1.11.0",
"@axiomhq/winston": "^0.1.3",
"@discordx/importer": "^1.2.2",
"@discordx/koa": "^1.1.2",
"@discordx/pagination": "^3.4.1",
"@hokify/agenda": "^6.3.0",
"@koa/router": "^12.0.0",
"dayjs": "^1.11.9",
"discord.js": "^14.11.0",
"discordx": "^11.7.6",
"human-interval": "^2.0.1",
"koa": "^2.14.2",
"nanoid": "^4.0.2",
"saslprep": "^1.0.3",
"winston": "^3.10.0"
},
"devDependencies": {
"@types/koa": "^2.13.6",
"@types/koa__router": "^12.0.0",
"@types/node": "^20.3.1",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.7",
"typescript": "5.1.3"
}
}