-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.05 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
{
"name": "lexbot",
"version": "1.0.6",
"description": "LexBot done in TypeScript",
"scripts": {
"prebuild": "node -p \"'export const VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts",
"build": "tsc",
"lint": "eslint \"**/*.ts\"",
"start": "node dist/index.js",
"debug": "nodemon src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OttrOne/lexbot.git"
},
"keywords": [
"Discord",
"Bot",
"TypeScript"
],
"author": "Alex Ottr <alex@ottr.one>",
"license": "MIT",
"bugs": {
"url": "https://github.com/OttrOne/lexbot/issues"
},
"homepage": "https://github.com/OttrOne/lexbot#readme",
"dependencies": {
"discord-api-types": "^0.35.0",
"discord.js": "^13.8.1",
"dotenv": "^16.0.1"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint": "^8.18.0",
"eslint-plugin-import": "^2.26.0",
"nodemon": "^2.0.18"
}
}