-
-
Notifications
You must be signed in to change notification settings - Fork 137
/
Copy pathpackage.json
46 lines (46 loc) · 1.4 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
38
39
40
41
42
43
44
45
46
{
"name": "hexo-theme-redefine",
"version": "2.8.2",
"private": false,
"description": "Redefine your writing with Hexo Theme Redefine.",
"scripts": {
"npm:publish": "npm run build && npm publish",
"build": "npm run build:css && npm run build:js",
"build:css": "tailwindcss build -i source/css/tailwind.source.css -o source/css/build/tailwind.css --minify",
"build:js": "node source/js/build.js",
"watch:css": "tailwindcss build -i source/css/tailwind.source.css -o source/css/build/tailwind.css --watch --minify",
"prepare": "husky",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EvanNotFound/hexo-theme-redefine.git"
},
"keywords": [
"hexo",
"theme",
"redefine",
"simple",
"pure",
"powerful",
"hexo-theme"
],
"author": "EvanNotFound",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/EvanNotFound/hexo-theme-redefine/issues"
},
"homepage": "https://redefine.ohevan.com",
"devDependencies": {
"eslint": "^8.47.0",
"glob-promise": "^6.0.7",
"husky": "^9.1.6",
"postcss": "^8.4.47",
"standard-version": "^9.5.0",
"tailwindcss": "^3.4.14",
"terser": "^5.36.0"
}
}