-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.66 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.66 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
{
"name": "kit",
"version": "1.0.0",
"description": "The Page Builder for Hugo",
"author": "George Cushen",
"license": "MIT",
"packageManager": "pnpm@10.14.0",
"bugs": {
"url": "https://github.com/HugoBlox/kit/issues"
},
"homepage": "https://hugoblox.com",
"repository": {
"type": "git",
"url": "git+https://github.com/HugoBlox/kit.git"
},
"dependencies": {
"alpinejs": "^3.15.0",
"katex": "^0.16.22",
"markmap-autoloader": "^0.18.12",
"medium-zoom": "^1.0.8",
"mermaid": "^11.12.0",
"plotly.js": "^3.1.0",
"preact": "^10.27.2",
"rollup-plugin-delete": "^2.0.0",
"vite": "^7.1.2",
"vite-hugo-plugin": "^3.1.0",
"vite-plugin-static-copy": "^3.1.1"
},
"devDependencies": {
"@biomejs/biome": "^2.3.2"
},
"scripts": {
"prod": "scripts/view-starter-prod.sh",
"dev": "scripts/view-starter-dev.sh",
"dev:stop": "lsof -ti :8081 | xargs kill -9",
"test": "scripts/view-test.sh",
"lint": "biome check --reporter=summary . --linter-enabled=true --formatter-enabled=false",
"lint:fix": "biome check --write . --linter-enabled=true --formatter-enabled=false",
"format": "biome format --write .",
"update:starters": "poetry run python ./scripts/update.py",
"vendor:libs": "vite build --config vite.config.js",
"vendor:libs:watch": "vite build --config vite.config.js --watch",
"vendor:update-and-build": "pnpm up katex mermaid markmap-autoloader alpinejs plotly.js preact --latest && pnpm vendor:libs",
"test:releaser": "poetry run python scripts/test_release_modules.py",
"check:template-deps": "node scripts/check-template-deps.mjs"
},
"browserslist": "> 1%"
}