-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.5 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": "spotify-manager",
"version": "1.0.0",
"description": "Control your Spotify account from a Discord Bot!",
"main": "index.ts",
"types": "src/types/main.d.ts",
"scripts": {
"start": "npx tsx index.ts",
"lint:check": "npx eslint src/ index.ts",
"lint": "npx eslint src/ index.ts --fix",
"prettier": "npx prettier --write src/ index.ts",
"prettier:check": "npx prettier --check src/ index.ts",
"build": "npx tsc --build",
"dev": "npx nodemon",
"setup-config": "npx tsx Setup.ts"
},
"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": "[email protected]",
"type": "module",
"dependencies": {
"chalk": "^5.3.0",
"discord.js": "^14.16.2",
"express": "^4.21.0",
"express-session": "^1.18.0",
"node-cache": "^5.1.2",
"winston": "^3.14.2"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"@inquirer/prompts": "^5.5.0",
"@j4cobi/eslint-plugin-sort-imports": "^1.0.2",
"@types/eslint": "^9.6.1",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/node": "^22.5.4",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.9.0",
"nodemon": "^3.1.4",
"prettier": "^3.3.3",
"tsx": "^4.19.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.5.0"
}
}