-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.04 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
{
"name": "xayan-nu",
"version": "1.0.0",
"description": "Personal website and blog - The Adversary's Guide to the Galaxy",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently \"npm run vite:dev\" \"npm run hugo:dev\"",
"build": "npm run vite:build && npm run hugo:build",
"hugo:dev": "hugo server --disableFastRender",
"hugo:build": "hugo --minify",
"vite:dev": "vite build --watch --mode development",
"vite:build": "vite build",
"preview": "npm run clean && npm run build && hugo server --environment production",
"clean": "rm -rf public static/dist node_modules/.vite"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Xayan/xayan-nu.git"
},
"keywords": [
"blog",
"hugo",
"vite",
"static-site"
],
"author": "Xayan",
"license": "MIT",
"bugs": {
"url": "https://github.com/Xayan/xayan-nu/issues"
},
"homepage": "https://xayan.nu",
"devDependencies": {
"concurrently": "^9.2.1",
"typescript": "^5.9.2",
"vite": "^7.1.7"
}
}