-
Notifications
You must be signed in to change notification settings - Fork 107
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.54 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.54 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
{
"name": "openlist-docs",
"version": "0.0.0",
"type": "module",
"packageManager": "pnpm@10.12.1",
"license": "AGPL-3.0",
"scripts": {
"build": "node utils/ensure-full-git.js && npm run build:ssg",
"build:spa": "valaxy build",
"build:ssg": "NODE_OPTIONS='--max-old-space-size=8192' valaxy build --ssg",
"dev": "valaxy",
"rss": "valaxy rss",
"serve": "vite preview",
"vitepress:dev": "vitepress dev",
"vitepress:build": "vitepress build",
"vitepress:preview": "vitepress preview",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky"
},
"dependencies": {
"@giscus/vue": "^3.1.1",
"@iconify-json/devicon-plain": "^1.2.31",
"@iconify-json/logos": "^1.2.4",
"@iconify-json/ri": "^1.2.5",
"@iconify-json/vscode-icons": "^1.2.23",
"valaxy": "0.25.9",
"valaxy-addon-algolia": "0.2.0",
"valaxy-addon-components": "0.1.0",
"valaxy-addon-git-log": "0.3.2",
"valaxy-theme-press": "0.25.9",
"vitepress-plugin-group-icons": "^1.6.1"
},
"devDependencies": {
"@iconify-json/carbon": "1.2.9",
"@iconify-json/devicon": "^1.2.32",
"@iconify-json/simple-icons": "1.2.39",
"@types/node": "^24.0.15",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"nodemon": "^3.1.10",
"prettier": "^3.6.2",
"vite": "6.3.5",
"vitepress": "1.1.4",
"vue": "^3.5.17",
"vue-i18n": "^11.1.10",
"vue-tsc": "^2.2.12"
},
"lint-staged": {
"*.{js,ts,vue,md,json,yml,yaml}": [
"prettier --write"
]
}
}