-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.59 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.59 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "joiSite",
"version": "1.0.0",
"private": true,
"type": "module",
"packageManager": "pnpm@10.32.1",
"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": {
"@babel/runtime": "^7.29.2",
"@codemirror/autocomplete": "^6.20.1",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/language": "^6.12.3",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.41.0",
"@lezer/highlight": "^1.2.3",
"@standard-schema/spec": "^1.1.0",
"@typescript/vfs": "^1.6.4",
"@uiw/codemirror-theme-darcula": "^4.25.9",
"@uiw/codemirror-theme-eclipse": "^4.25.9",
"@vueuse/core": "^14.2.1",
"codemirror": "^6.0.2",
"es-toolkit": "^1.45.1",
"feed": "^5.2.0",
"joi-17": "npm:joi@17.13.3",
"joi-18": "npm:joi@18.1.2",
"prettier": "^3.8.1",
"semver": "^7.7.4",
"vitepress-plugin-group-icons": "^1.7.3",
"vue": "^3.5.32"
},
"devDependencies": {
"@octokit/plugin-throttling": "^11.0.3",
"@octokit/rest": "^22.0.1",
"@types/node": "^24.12.2",
"@types/semver": "^7.7.1",
"oxfmt": "^0.44.0",
"oxlint": "^1.59.0",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vitepress": "2.0.0-alpha.17"
}
}