-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.23 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
{
"name": "protector",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"start": "tsc && node ./dist/index.js",
"dev": "nodemon main --dev",
"production": "pm2 start dist/index.js --name Protector --update-env",
"refresh": "pm2 restart Protector --update-env"
},
"keywords": [
"typescript",
"sern",
"discord.js"
],
"license": "UNLICENSED",
"dependencies": {
"@sern/handler": "^2.6.2",
"@spark.ts/logger": "^1.4.0",
"chalk": "^5.2.0",
"colorette": "^2.0.20",
"discord.js": "^14.10.2",
"enmap": "^5.9.5",
"mongoose": "^7.1.0",
"ts-dotenv": "^0.9.1",
"undici": "^5.22.0"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/node": "^18.16.3",
"typescript": "^4.9.5"
},
"imports": {
"#client": [
"./dist/index.js"
],
"#logger": [
"./dist/helpers/logger.js"
],
"#plugins": [
"./dist/plugins/index.js"
],
"#adapters": [
"./dist/helpers/adapters.js"
],
"#updater": [
"./dist/helpers/channelUpdater.js"
],
"#util": [
"./dist/helpers/util.js"
]
},
"type": "module"
}