-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.22 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.22 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
{
"name": "evolvbits-site",
"version": "0.18.0",
"description": "EvolvBits SITE",
"type": "module",
"scripts": {
"minify:files": "node tools/scripts/minify.mjs",
"jekyll:build": "cross-env JEKYLL_ENV=production bundle exec jekyll build",
"jekyll:serve": "JEKYLL_ENV=development; echo JEKYLL_ENV=$JEKYLL_ENV; bundle exec jekyll serve --host 0.0.0.0 --port 4000 --drafts",
"clean:cache": "node tools/scripts/clean.mjs --cache",
"clean:all": "node tools/scripts/clean.mjs --all",
"build": "npm-run-all clean:cache jekyll:build minify:files",
"serve": "npm run clean:cache && npm run jekyll:serve",
"help": "node tools/scripts/help.mjs"
},
"repository": "git+https://github.com/evolvbits/evolvbits.github.io.git",
"keywords": [
"evolvbits",
"site",
"jekyll"
],
"author": "William C. Canin <https://williamcanin.github.io>",
"license": "https://evolvbits.github.io/license/",
"homepage": "https://evolvbits.github.io",
"devDependencies": {
"@napi-rs/image": "^1.12.0",
"cross-env": "^10.0.0",
"del": "^8.0.1",
"esbuild": "^0.27.3",
"execa": "^9.6.0",
"glob": "^13.0.6",
"html-minifier-terser": "^7.2.0",
"kleur": "^4.1.5",
"npm-run-all": "^4.1.5"
}
}