-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.31 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
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "yliasdiscordbot",
"version": "4.1.0",
"description": "Yet another Discord Bot",
"main": "dist/index.js",
"scripts": {
"start": "node .",
"compile": "tsc -b src",
"watch": "npm run compile -- -w",
"register-commands-dev": "node dist/command-registration.js",
"register-commands-prod": "node dist/command-registration.js prod",
"rcd": "npm run register-commands-dev",
"rcp": "npm run register-commands-prod",
"deploy": "scripts/deploy.sh",
"check-config-files": "node scripts/check-config-files.js",
"ccf": "npm run check-config-files",
"update-config-files": "scripts/update-config-files.sh",
"ucf": "npm run update-config-files",
"test": "jest --no-watchman"
},
"imports": {
"#root/*": "./dist/*.js",
"#lib/*": "./dist/lib/*.js",
"#framework/*": "./dist/lib/framework/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StariusTechnologies/Ylias.git"
},
"keywords": [
"ylias",
"discord",
"bot",
"discord.js",
"sapphire"
],
"author": "Lily Wonhalf <lilywonhalf@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/StariusTechnologies/Ylias/issues"
},
"homepage": "https://github.com/StariusTechnologies/Ylias#readme",
"dependencies": {
"@discordjs/rest": "^0.1.0-canary.0",
"@lilywonhalf/pretty-logger": "^2.0",
"@sapphire/fetch": "^1.0.5",
"@sapphire/framework": "next",
"@types/node-fetch": "^2.5.12",
"discord-api-types": "^0.22.0",
"discord.js": "^13",
"dotenv": "^10.0.0"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-decorators": "^7.14.5",
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@sapphire/eslint-config": "^3.2.3",
"@sapphire/prettier-config": "^1.1.6",
"@sapphire/ts-config": "^3.0.0",
"@types/jest": "^27.0.1",
"@types/node": "^16.6.1",
"babel-plugin-const-enum": "^1.1.0",
"eslint": "^7.32.0",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-jsdoc": "^36.0.6",
"jest": "^27.0.6",
"jest-circus": "^27.0.6",
"jest-mock-random": "^1.1.1",
"ts-node": "^10.2.0",
"ts-purify": "^3.0.1",
"typescript": "^4.3.5",
"typescript-eslint": "^0.0.1-alpha.0"
}
}