-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.17 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
{
"name": "manto",
"version": "0.0.0",
"description": "A simple tool to clone discord servers",
"author": "Kruceo",
"license": "UNLICENSED",
"homepage": "https://github.com/9aia/manto#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/9aia/manto.git"
},
"bugs": {
"url": "https://github.com/9aia/manto/issues"
},
"keywords": [
"discord",
"bot",
"clone",
"server"
],
"main": "src/bot/main.ts",
"scripts": {
"start": "bun .",
"dev": "bun --watch src/bot/main.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "echo \"Error: no build specified\" && exit 1",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "release-it",
"schema:perms": "bun ./scripts/generate-perms-schema"
},
"dependencies": {
"discord.js": "^14.14.1",
"dotenv": "^16.4.5",
"uuid": "^10.0.0",
"yaml": "^2.4.1"
},
"devDependencies": {
"@antfu/eslint-config": "^2.13.3",
"@release-it/keep-a-changelog": "^5.0.0",
"@types/uuid": "^10.0.0",
"@types/yaml": "^1.9.7",
"eslint": "^8.57.0",
"release-it": "^17.2.0",
"typescript": "^5.4.5"
}
}