This repository was archived by the owner on Oct 20, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 3.1 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 3.1 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "spudnik",
"description": "Spudnik is a Discord chat bot focused on guild management and adding interesting and useful functionality to your server. It was built on top of some of the most popular and widely used frameworks for extendibility, and written with organization and stability in mind. It also ships with ZERO weeb commands/references!",
"version": "1.2.0",
"license": "Apache-2.0",
"readme": "README.md",
"engines": {
"node": "^12.16.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Spudnik-Group/Spudnik.git"
},
"author": "Spudnik Group <comrades@spudnik.io> (https://spudnik.io)",
"contributors": [
"Nate Richardson <hello@naterichardson.com> (https://naterichardson.com)",
"Matt Carroll <admin@develogix.com> (https://develogix.com)"
],
"main": "dist/launch.js",
"scripts": {
"preinstall": "npm i -g node-gyp typescript@3.9.3 rimraf",
"lint": "eslint --ext ts src/**",
"clean:all": "npm run clean:node_modules && npm run clean:dist",
"clean:node_modules": "rimraf ./node_modules",
"clean:dist": "rimraf ./dist",
"build": "tsc",
"test": "npm run lint",
"prestart": "npm run clean:dist && npm run build",
"start": "npm run start:prod",
"start:dev": "node ./node_modules/nodemon/bin/nodemon.js",
"start:prod": "node ./dist/launch.js"
},
"dependencies": {
"@discordjs/collection": "0.1.6",
"@klasa/querybuilder": "^0.0.1",
"@klasa/request-handler": "^0.0.3",
"@klasa/utils": "^0.1.0",
"axios": "^0.21.0",
"bufferutil": "^4.0.1",
"chalk": "^4.0.0",
"common-tags": "1.8.0",
"d20": "^1.4.1",
"discord.js": "github:discordjs/discord.js#fe7df70",
"erlpack": "github:discordapp/erlpack",
"js-base64": "3.6.0",
"klasa": "github:dirigeants/klasa#settings",
"leet": "^1.3.0",
"markdown-escape": "1.1.0",
"module-alias": "^2.2.2",
"mongodb": "^3.3.4",
"mw-dict": "^3.0.0",
"remove-markdown": "0.3.0",
"rollbar": "^2.5.1",
"soap": "^0.35.0",
"unescape": "^1.0.1",
"urban-dictionary": "^2.2.1",
"url-unshort": "^5.0.0",
"utf-8-validate": "^5.0.2",
"wikijs": "^6.0.0",
"zlib-sync": "^0.1.6",
"zucc": "^0.1.2"
},
"devDependencies": {
"@types/common-tags": "1.8.0",
"@types/js-base64": "3.0.0",
"@types/module-alias": "2.0.0",
"@types/node": "14.14.10",
"@typescript-eslint/eslint-plugin": "4.8.2",
"@typescript-eslint/parser": "4.8.2",
"eslint": "7.14.0",
"eslint-config-klasa": "dirigeants/klasa-lint",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prefer-arrow": "1.2.2",
"eslint-plugin-unicorn": "23.0.0",
"nodemon": "2.0.6",
"typescript": "4.1.2"
},
"_moduleAliases": {
"@utils": "./dist/lib/util",
"@lib": "./dist/lib",
"@root": "./dist"
}
}