-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.07 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
{
"name": "discord",
"version": "1.0.0",
"description": "Elektron++ Discord Bot and related stuff ",
"main": "dist/main.js",
"type": "module",
"scripts": {
"start": "node --experimental-specifier-resolution=node .",
"test": "standard && npx jest",
"lint:check": "ts-standard",
"lint:fix": "ts-standard --fix",
"build": "tsc",
"dev": "npx nodemon src/main.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ElektronPlus/discord.git"
},
"keywords": [
"school"
],
"author": "ElektronPlus",
"license": "MIT",
"bugs": {
"url": "https://github.com/ElektronPlus/discord/issues"
},
"homepage": "https://github.com/ElektronPlus/discord#readme",
"devDependencies": {
"@types/node-fetch": "^3.0.3",
"@types/pino": "^6.3.11",
"pino-pretty": "^7.0.1",
"ts-standard": "^10.0.0",
"typescript": "^4.4.3"
},
"ts-standard": {
"project": "./tsconfig.json"
},
"dependencies": {
"discord.js": "^13.2.0",
"dotenv": "^10.0.0",
"node-fetch": "^3.0.0",
"pino": "^6.13.3"
}
}