-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 958 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 958 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
{
"name": "class-sync",
"description": "Class Sync discord bot",
"version": "0.0.1",
"author": "Mason L'Etoile",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/masonlet/class-sync.git"
},
"homepage": "https://github.com/masonlet/class-sync#readme",
"bugs": "https://github.com/masonlet/class-sync/issues",
"main": "dist/src/index.js",
"type": "module",
"scripts": {
"typecheck": "tsc",
"build": "tsc -p tsconfig.build.json",
"deploy": "npm run build && node dist/deploy-commands.js",
"start": "npm run build && node dist/src/index.js",
"test": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"chrono-node": "^2.9.0",
"discord.js": "^14.25.1",
"dotenv": "^17.2.3"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.0.18",
"typescript": "^6.0.3",
"vitest": "^4.0.18"
},
"overrides": {
"undici": "^6.27.0"
}
}