forked from sumimakito/hexo-theme-Journal
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 1.23 KB
/
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
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "hexo-theme-journal",
"version": "2.0.3",
"description": "Moments got piled up.",
"main": "index.js",
"scripts": {
"test": "yarn build",
"build:css": "node-sass source/scss/journal.scss --output-style compressed -o source/css && postcss source/css/journal.css -u autoprefixer -r --no-map",
"build:js": "swc -q source/js/journal.js | terser --compress --mangle --toplevel > source/js/journal.min.js",
"build": "yarn build:css && yarn build:js"
},
"repository": {
"type": "git",
"url": "https://github.com/SumiMakito/hexo-theme-journal"
},
"keywords": [
"hexo",
"theme",
"journal"
],
"author": "Makito <[email protected]> (https://makito.cc/)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/SumiMakito/hexo-theme-journal/issues"
},
"homepage": "https://github.com/SumiMakito/hexo-theme-journal/README.md",
"devDependencies": {
"@swc/cli": "^0.1.55",
"@swc/core": "^1.2.127",
"autoprefixer": "^10.4.2",
"node-sass": "^7.0.1",
"postcss": "^8.4.5",
"postcss-cli": "^9.1.0",
"scss-compile": "^0.1.7",
"terser": "^5.10.0"
}
}