-
Notifications
You must be signed in to change notification settings - Fork 2.3k
/
package.json
45 lines (45 loc) · 1.33 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
{
"name": "discord.js-guide",
"description": "Imagine a guide... that explores the many possibilities for your discord.js bot.",
"version": "3.0.0",
"private": true,
"scripts": {
"lint": "eslint . --ext js,md,vue",
"dev": "vuepress dev guide",
"build": "NODE_ENV=production vuepress build guide"
},
"repository": "https://github.com/discordjs/guide.git",
"keywords": [
"discord",
"bot",
"guide",
"tutorial",
"javascript",
"node"
],
"author": "Sanctuary <[email protected]>",
"contributors": [
"dragonfire535 <[email protected]>",
"Drahcirius",
"Lewdcario",
"Souji <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/discordjs/guide/issues"
},
"homepage": "https://discordjs.guide",
"devDependencies": {
"@vuepress/plugin-docsearch": "^2.0.0-beta.24",
"@vuepress/plugin-google-analytics": "^2.0.0-beta.24",
"eslint": "^7.18.0",
"eslint-config-sora": "^3.1.0",
"eslint-plugin-markdown": "^1.0.0",
"eslint-plugin-vue": "^7.5.0",
"@babel/eslint-parser": "^7.17.0",
"vuepress-vite": "^2.0.0-beta.24"
},
"dependencies": {
"@discord-message-components/vue": "^0.2.1"
}
}