-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
40 lines (40 loc) · 1.07 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
{
"name": "@betterdiscord/docs",
"version": "2.0.0",
"private": true,
"scripts": {
"api": "esrun scripts/apigen.ts",
"lint": "eslint --ext .ts --ignore-path .gitignore .",
"dev": "vitepress dev .",
"build": "vitepress build .",
"preview": "vitepress preview ."
},
"devDependencies": {
"@digitak/esrun": "^3.2.26",
"@docusaurus/module-type-aliases": "^2.4.1",
"@types/eslint": "^9.6.1",
"eslint": "^9.15.0",
"globals": "^15.12.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.15.0",
"vitepress": "^1.5.0",
"vitepress-plugin-group-icons": "^1.3.0",
"vitepress-sidebar": "^1.29.0"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": ">=16.14"
},
"type": "module"
}