Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
lima-vm
GitHub Repository: lima-vm/lima
Path: blob/master/website/package.json
1637 views
1
{
2
"name": "lima-site",
3
"version": "1.0",
4
"description": "Lima website that uses Docsy theme for technical documentation.",
5
"repository": "github:lima-vm/lima",
6
"homepage": "https://lima-vm.io",
7
"author": "Lima",
8
"license": "Apache-2.0",
9
"bugs": "https://github.com/lima-vm/lima/issues",
10
"spelling": "cSpell:ignore HTMLTEST precheck postbuild -",
11
"scripts": {
12
"_build": "npm run _hugo-dev",
13
"_check:links": "echo IMPLEMENTATION PENDING for check-links; echo",
14
"_hugo": "hugo --cleanDestinationDir",
15
"_hugo-dev": "npm run _hugo -- -e dev -DFE",
16
"_serve": "npm run _hugo-dev -- --minify serve",
17
"build:preview": "npm run _hugo-dev -- --minify --baseURL \"${DEPLOY_PRIME_URL:-/}\"",
18
"build:production": "npm run _hugo -- --minify",
19
"build": "npm run _build",
20
"check:links:all": "HTMLTEST_ARGS= npm run _check:links",
21
"check:links": "npm run _check:links",
22
"clean": "rm -Rf public/* resources",
23
"make:public": "git init -b main public",
24
"precheck:links:all": "npm run build",
25
"precheck:links": "npm run build",
26
"postbuild:preview": "npm run _check:links",
27
"postbuild:production": "npm run _check:links",
28
"serve": "npm run _serve",
29
"test": "npm run check:links",
30
"update:pkg:dep": "npm install --save-dev autoprefixer@latest postcss-cli@latest",
31
"update:pkg:hugo": "npm install --save-dev --save-exact hugo-extended@latest"
32
},
33
"devDependencies": {
34
"autoprefixer": "^10.4.21",
35
"hugo-extended": "0.133.1",
36
"postcss-cli": "^11.0.1"
37
}
38
}
39
40