-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.46 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": "arunabase",
"version": "1.0.0-ALPHA.9",
"description": "An API made to help developers what works with discord and twitch.",
"main": "build/index.js",
"types": "build/index.d.ts",
"type": "commonjs",
"files": [
"build"
],
"scripts": {
"build": "npx tsc -p .",
"prepack": "npm run build",
"lint": "npx eslint src/main --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArunaBot/ArunaBase.git"
},
"keywords": [
"discord",
"twitch",
"api",
"bot"
],
"author": "Lobo Metalurgico",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/ArunaBot/ArunaBase/issues"
},
"homepage": "https://github.com/ArunaBot/ArunaBase#readme",
"engines": {
"node": ">=22.12.0"
},
"dependencies": {
"@promisepending/logger.js": "^1.1.1",
"@twitchapis/twitch.js": "^2.0.0-beta.4",
"arunacore-api": "^1.0.0-BETA.0",
"discord.js": "^14.18.0",
"express": "^4.21.2",
"path-to-regexp": "^8.2.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.0",
"@eslint/js": "^9.21.0",
"@types/express": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^8.25.0",
"@typescript-eslint/parser": "^8.25.0",
"eslint": "^9.21.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.2.1",
"globals": "^16.0.0",
"typescript": "^5.7.3"
}
}