-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.28 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
{
"name": "nova-framework",
"version": "1.0.0",
"description": "Utility functions and hooks for gay geeks bot modules",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Calli <me@calli.dev>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Gay-Geeks/nova-framework.git"
},
"scripts": {
"build": "shx rm -rf ./lib/ && tsc",
"test:lint": "eslint --ext ts src",
"lint": "eslint --fix --ext ts src"
},
"files": [
"lib"
],
"devDependencies": {
"@types/node": "^18.13.0",
"@types/node-cron": "^3.0.6",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.33.0",
"eslint-config-marine": "^9.4.1",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"shx": "^0.3.4",
"tslib": "^2.6.0",
"typescript": "^5.1.0"
},
"dependencies": {
"discord.js": "^14.12.0",
"node-cron": "^3.0.2"
},
"husky": {
"hooks": {
"pre-commit": "shx rm -rf ./lib/ && tsc && git add ./lib"
}
},
"keywords": [
"discord",
"typescript",
"bot-framework",
"discord.js"
],
"resolutions": {
"discord-api-types": "0.37.37"
}
}