-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
24 lines (24 loc) · 983 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"author": "Sydist",
"description": "A personal blog/portfolio website.",
"homepage": "<https://sydist.github.io>",
"keywords": [ "Blog", "Portfolio", "Website", "Astro", "HTML", "CSS", "JavaScript" ],
"license": "MIT",
"main": "index.js",
"name": "sydist.github.io",
"repository": "<https://github.com/sydist/sydist.github.io>",
"scripts":
{
"start": "astro dev",
"build": "astro build",
"minify": "html-minifier-terser --collapse-boolean-attributes --collapse-whitespace --decode-entities --remove-attribute-quotes --remove-comments --remove-empty-attributes --remove-optional-tags --remove-redundant-attributes --remove-script-type-attributes --remove-style-link-type-attributes --use-short-doctype --minify-css --input-dir dist --output-dir dist --file-ext html",
"build:production": "npm run build && npm run minify",
"preview": "astro preview"
},
"version": "0.1.0",
"devDependencies":
{
"astro": "^1.6.11",
"html-minifier-terser": "^7.1.0"
}
}