-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
package.json
51 lines (51 loc) · 1.35 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
46
47
48
49
50
51
{
"name": "discord-api-docs",
"version": "1.1.1",
"description": "Documentation for using Discord's API",
"main": "index.js",
"type": "module",
"directories": {
"doc": "docs"
},
"engines": {
"node": ">= 20.11.0"
},
"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",
"lint": "eslint tools",
"lint:fix": "eslint tools --fix",
"test:links": "tsx tools/checkLinks.ts",
"test:build": "tsx tools/checkBuild.ts",
"test:tables": "npx markdown-table-formatter docs/**/*.{md,mdx} --check",
"fix:tables": "npx markdown-table-formatter docs/**/*.{md,mdx}"
},
"devDependencies": {
"@actions/core": "^1.10.1",
"@eslint/js": "^9.2.0",
"@mdx-js/mdx": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@types/node": "^20.12.12",
"chalk": "^5.3.0",
"eslint": "^9.2.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"markdown-table-formatter": "^1.6.0",
"mdast-util-from-markdown": "^2.0.1",
"mdast-util-to-markdown": "^2.1.0",
"prettier": "^3.2.5",
"remark": "^15.0.1",
"tsx": "^4.10.2",
"typescript": "^5.4.5",
"typescript-eslint": "^8.0.0-alpha.12"
}
}