-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·55 lines (55 loc) · 2.03 KB
/
package.json
File metadata and controls
executable file
·55 lines (55 loc) · 2.03 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
49
50
51
52
53
54
55
{
"name": "rawfeed",
"version": "0.2.8",
"description": "A raw Jekyll theme for minimalists",
"type": "module",
"scripts": {
"install": "echo 'wait...' && bundle install",
"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 127.0.0.1 --port 4000 --drafts",
"create:draft": "bundle exec rake create:draft",
"create:page": "bundle exec rake create:page",
"create:pixel": "bundle exec rake create:pixel",
"create:resume": "bundle exec rake create:resume",
"post:draft": "bundle exec rake post:draft",
"home:about": "bundle exec rake home:about",
"home:blog": "bundle exec rake home:blog",
"blog:disable": "bundle exec rake blog:disable",
"blog:enable": "bundle exec rake blog:enable",
"pixels:disable": "bundle exec rake pixels:disable",
"pixels:enable": "bundle exec rake pixels:enable",
"clean:cache": "node tools/scripts/clean.mjs --cache",
"clean:all": "node tools/scripts/clean.mjs --all",
"generate:gem": "bundle exec rake build",
"publish:gem": "bundle exec rake release",
"rake:tasks": "bundle exec rake --tasks",
"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/rawfeed/rawfeed-jekyll.git",
"keywords": [
"rawfeed",
"theme",
"template",
"jekyll",
"retro"
],
"author": "William Canin <https://williamcanin.github.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rawfeed/rawfeed-jekyll/issues"
},
"homepage": "https://rawfeed.github.io/rawfeed-jekyll",
"devDependencies": {
"cross-env": "^10.0.0",
"npm-run-all": "^4.1.5",
"del": "^8.0.1",
"esbuild": "^0.25.11",
"execa": "^9.6.0",
"glob": "^11.0.3",
"html-minifier-terser": "^7.2.0",
"kleur": "^4.1.5"
}
}