-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.65 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.65 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
55
56
57
58
{
"name": "spotify-manager",
"version": "2.0.0",
"description": "Control your Spotify account from a Discord Bot!",
"main": "index.ts",
"types": "src/types/main.d.ts",
"scripts": {
"start": "pnpm exec tsx index.ts",
"eslint:check": "pnpm exec eslint . ",
"eslint": "pnpm eslint:check --fix",
"prettier": "pnpm exec prettier --write .",
"prettier:check": "pnpm exec prettier --check .",
"build": "pnpm exec tsc --build",
"dev": "pnpm exec nodemon"
},
"keywords": [],
"author": "Kathund",
"license": "MIT",
"engines": {
"node": ">=20.16.0",
"pnpm": ">=9.9.0",
"npm": "forbidden, use pnpm instead",
"yarn": "forbidden, use pnpm instead",
"bun": "forbidden, use pnpm instead"
},
"packageManager": "pnpm@9.9.0",
"type": "module",
"dependencies": {
"chalk": "^5.6.2",
"discord.js": "^14.25.1",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"express-session": "^1.18.2",
"node-cache": "^5.1.2",
"winston": "^3.19.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@eslint/json": "^0.14.0",
"@inquirer/prompts": "^8.2.0",
"@j4cobi/eslint-plugin-sort-imports": "^1.0.2",
"@stylistic/eslint-plugin": "^5.7.0",
"@types/eslint": "^9.6.1",
"@types/express": "^5.0.6",
"@types/express-session": "^1.18.2",
"@types/node": "^20.16.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"globals": "^16.5.0",
"nodemon": "^3.1.11",
"prettier": "^3.8.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.0"
}
}