forked from discord/discord-api-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.17 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
{
"name": "discord-api-docs",
"version": "1.1.1",
"description": "Documentation for using Discord's API",
"main": "index.js",
"type": "module",
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/discord/discord-api-docs.git"
},
"author": "Discord Krew",
"license": "MIT",
"bugs": {
"url": "https://github.com/discord/discord-api-docs/issues"
},
"homepage": "https://github.com/discord/discord-api-docs#readme",
"scripts": {
"build": "tsc --build",
"lint": "eslint ci",
"lint:fix": "eslint ci --fix",
"test:links": "node dist/ci/checkLinks.js",
"test:tables": "npx markdown-table-formatter docs/**/*.{md,mdx} --check",
"fix:tables": "npx markdown-table-formatter docs/**/*.{md,mdx}"
},
"devDependencies": {
"@actions/core": "^1.9.1",
"@types/node": "^20.6.2",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"chalk": "^5.3.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"markdown-table-formatter": "^1.4.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"peerDependencies": {
"@mdx-js/react": "^2.0.0"
}
}