-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.12 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.12 KB
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
{
"name": "hapi.dev",
"version": "1.0.0",
"private": true,
"description": "The hapi.dev developer portal",
"type": "module",
"packageManager": "pnpm@10.33.0",
"repository": "git://github.com/hapijs/hapi.dev",
"scripts": {
"dev": "vitepress dev",
"fetch-data": "tsx cli/getModuleInfo.ts",
"build": "vitepress build",
"preview": "vitepress preview",
"generate": "tsx cli/getModuleInfo.ts && vitepress build",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"fmt": "oxfmt --check",
"fmt:fix": "oxfmt",
"test": "pnpm run lint && pnpm run fmt && tsc --noEmit"
},
"license": "BSD-3-Clause",
"dependencies": {
"@vueuse/core": "^14.2.1",
"es-toolkit": "^1.45.1",
"feed": "^5.2.0",
"semver": "^7.7.4",
"vitepress-plugin-group-icons": "^1.7.3",
"vue": "^3.5.31"
},
"devDependencies": {
"@octokit/plugin-throttling": "^11.0.3",
"@octokit/rest": "^22.0.1",
"@types/node": "^24.12.0",
"@types/semver": "^7.7.1",
"oxfmt": "^0.43.0",
"oxlint": "^1.59.0",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vitepress": "2.0.0-alpha.17"
}
}