-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 819 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 819 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
{
"name": "timesync-js",
"version": "1.0.0",
"description": "A Discord bot allowing for easy time and timezone conversion",
"main": "main.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc --outDir build",
"prestart": "npm run build --output-path=build",
"start": "node build/main.js"
},
"compilerOptions": {
"typeRoots": [
"src/@types",
"node_modules/@types"
]
},
"author": "GaMeNu (@gamenu)",
"license": "GPL-3.0-only",
"dependencies": {
"discord.js": "^14.15.3",
"fuse.js": "^7.0.0",
"luxon": "^3.5.0",
"mysql2": "^3.11.0"
},
"devDependencies": {
"@types/luxon": "^3.4.2",
"@types/mysql": "^2.15.26"
}
}