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
|
{
"name": "hugo-theme-fuji",
"version": "2.2.1",
"description": "A minimal Hugo theme with nice theme color. | 一个主题色极简 Hugo 主题。",
"repository": {
"type": "git",
"url": "git+https://github.com/amzrk2/hugo-theme-fuji.git"
},
"keywords": [
"hugo",
"theme",
"fuji"
],
"author": "DSRKafuU <mail@amzrk2.cc> (https://amzrk2.cc/)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/amzrk2/hugo-theme-fuji/issues"
},
"homepage": "https://github.com/amzrk2/hugo-theme-fuji#readme",
"dependencies": {
"@primer/css": "15.0.0"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"autoprefixer": "^9.8.6",
"cross-env": "^7.0.2",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-postcss": "^8.0.0",
"gulp-sass": "^4.1.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-uglify": "^3.0.2",
"npm-run-all": "^4.1.5",
"sass": "^1.26.10"
},
"scripts": {
"compile": "gulp compile",
"dev": "gulp dev",
"preview": "hugo server -s ../.. --forceSyncStatic",
"build": "cross-env NODE_ENV=production npm run compile",
"serve": "cross-env NODE_ENV=development npm-run-all -p dev preview"
}
}
|