Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 150
Expand file tree
/
Copy pathpackage.json
More file actions
Latest commit
30 lines (30 loc) · 1023 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 1023 Bytes
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
{
"name": "archlinuxstudio-tutorial",
"version": "1.0.0",
"private": true,
"description": "Arch Linux Studio 社区维护的 Arch Linux 安装与使用教程",
"author": {
"name": "ArchLinuxStudio",
"url": "https://github.com/ArchLinuxStudio"
},
"license": "CC-BY-NC-ND-4.0",
"packageManager": "yarn@1.22.22",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "node scripts/sync-vendor.mjs && node scripts/generate-last-updated.mjs && node node_modules/serve/build/main.js docs -l 3000 --no-clipboard",
"start": "node scripts/sync-vendor.mjs && node scripts/generate-last-updated.mjs && node node_modules/serve/build/main.js docs -l 3000 --no-clipboard",
"sync:vendor": "node scripts/sync-vendor.mjs",
"check": "node scripts/validate-site.mjs",
"build": "node scripts/sync-vendor.mjs && node scripts/build.mjs"
},
"dependencies": {
"docsify": "5.0.0-rc.4",
"gitalk": "1.8.0",
"prismjs": "1.30.0"
},
"devDependencies": {
"serve": "14.2.6"
}
}