-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (52 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (52 loc) · 1.21 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
59
60
{
"name": "discord-dcloud",
"version": "0.1.0",
"description": "Discord-based cloud storage solution for file compression, segmentation, and backup using Discord as a backend",
"type": "module",
"license":"MIT",
"module": "dist/index.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": {
"name": "Neel Frostrain",
"url": "https://github.com/NeelFrostrain"
},
"repository": {
"type": "git",
"url": "https://github.com/NeelFrostrain/DCloud.git"
},
"keywords": [
"discord",
"cloud-storage",
"compression",
"7zip",
"file-backup",
"bot"
],
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"scripts": {
"start": "npm run build && node dist/index.js",
"dev": "nodemon --exec ts-node src/index.ts",
"build": "tsc",
"lint": "eslint src/**/*.ts",
"type-check": "tsc --noEmit"
},
"dependencies": {
"7zip-bin": "^5.2.0",
"chalk": "^5.6.2",
"discord.js": "^14.25.1"
},
"devDependencies": {
"eslint": "^9.39.2",
"globals": "^17.1.0",
"jiti": "^2.6.1",
"nodemon": "^3.1.11",
"typescript-eslint": "^8.53.1"
},
"peerDependencies": {
"typescript": "^5"
}
}