-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.28 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.28 KB
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": "^25.5.0",
"@types/node-cron": "^3.0.11",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"eslint": "^9.39.4",
"eslint-config-marine": "^9.4.1",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.8.1",
"shx": "^0.4.0",
"tslib": "2.8.1",
"typescript": "5.9.3"
},
"dependencies": {
"discord.js": "14.25.1",
"node-cron": "4.2.1"
},
"husky": {
"hooks": {
"pre-commit": "shx rm -rf ./lib/ && tsc && git add ./lib"
}
},
"keywords": [
"discord",
"typescript",
"bot-framework",
"discord.js"
],
"resolutions": {
"discord-api-types": "0.38.42"
}
}