forked from guildedts/guide
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 797 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 797 Bytes
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
{
"name": "@guildedts/guide",
"version": "0.0.1",
"description": "A Guide for creating a Guilded.TS bot.",
"private": true,
"contributors": [
"Gamertike (https://gamertike.com)"
],
"repository": "https://github.com/guildedts/guide/@guildedts/guide",
"parser": "markdown",
"scripts": {
"dev": "vuepress dev guide",
"build": "vuepress build guide",
"lint": "yarn eslint 'guide/**/*.{ts,md}' --fix",
"format": "yarn prettier --write 'guide/**/*.{ts,md}'",
"prepare": "yarn format && yarn lint"
},
"license": "Apache-2.0",
"packageManager": "yarn@3.2.0",
"devDependencies": {
"@vuepress/plugin-search": "next",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-markdown": "^2.2.1",
"prettier": "^2.6.2",
"vuepress-vite": "^2.0.0-beta.6"
}
}