-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
63 lines (63 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
55
56
57
58
59
60
61
62
63
{
"name": "@outwalk/discord-backup",
"type": "module",
"version": "0.8.2",
"publishConfig": {
"access": "public"
},
"description": "A module for backing up and restoring discord servers.",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "types/index.d.ts",
"engines": {
"node": ">=16"
},
"scripts": {
"build": "rollup -c",
"lint": "eslint src",
"prepublishOnly": "npm run lint && npm run build"
},
"keywords": [
"discord",
"backup"
],
"files": [
"dist",
"types"
],
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/OutwalkStudios/discord-backup.git"
},
"bugs": {
"url": "https://github.com/OutwalkStudios/discord-backup/issues"
},
"homepage": "https://github.com/OutwalkStudios/discord-backup#readme",
"author": "Outwalk Studios <[email protected]> (https://www.outwalkstudios.com/)",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.15.0",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"esbuild": "^0.24.0",
"eslint": "^9.15.0",
"globals": "^15.12.0",
"rollup": "^4.27.3",
"rollup-plugin-esbuild": "^6.1.1"
},
"dependencies": {
"axios": "^1.7.7",
"bottleneck": "^2.19.5"
},
"peerDependencies": {
"discord.js": "^14.x.x"
}
}