forked from discordjs/guide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.13 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
{
"name": "guide",
"description": "The official guide for discord.js, created and maintained by core members of its community.",
"version": "1.0.0",
"scripts": {
"lint": "eslint . --ext js,md,vue",
"serve": "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]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/discordjs/guide/issues"
},
"homepage": "https://discordjs.guide",
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.6.0",
"eslint-config-sora": "^2.0.0",
"eslint-plugin-markdown": "^1.0.0",
"eslint-plugin-vue": "^5.2.2",
"vuepress": "^1.2.0"
},
"dependencies": {
"@vuepress/plugin-google-analytics": "^1.2.0",
"semver": "^6.0.0",
"vue-discord-message": "^3.2.5",
"vuepress-theme-yuu": "^2.2.0"
}
}