-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 972 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 972 Bytes
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
{
"name": "discord-maestro",
"version": "0.1.0",
"description": "Discord Maestro Bot",
"main": "dist/index.js",
"bin": {
"maestro-discord": "dist/cli/maestro-discord.js"
},
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"deploy-commands": "tsx src/deploy-commands.ts",
"test": "npm run build && node --test dist/__tests__/**/*.test.js",
"maestro-discord": "tsx src/cli/maestro-discord.ts"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"better-sqlite3": "^12.8.0",
"discord.js": "^14.0.0",
"dotenv": "^16.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20.0.0",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.2",
"ts-node": "^10.0.0",
"tsx": "^3.12.7",
"typescript": "^5.0.0",
"typescript-eslint": "^8.58.1"
}
}