-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
56 lines (56 loc) · 1.35 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
47
48
49
50
51
52
53
54
55
56
{
"name": "hexo-solitude-tag",
"version": "1.0.22",
"description": "Plugin tags used only for Solitude themes",
"main": "dist/index.js",
"scripts": {
"prepublish": "pnpm install && pnpm run clean && pnpm run build",
"build": "tsc -b && cp -r lib/css dist",
"clean": "tsc -b --clean",
"eslint": "eslint .",
"pretest": "pnpm run clean && pnpm run build",
"test": "mocha -r ts-node/register 'test/**/*.ts'",
"test-cov": "c8 --reporter=lcovonly pnpm test"
},
"directories": {
"lib": "./lib"
},
"files": [
"dist/**"
],
"types": "./dist/index.d.ts",
"repository": "everfu/hexo-solitude-tag",
"homepage": "https://blog.everfu.cn",
"keywords": [
"website",
"blog",
"cms",
"framework",
"hexo"
],
"author": "伍十七 (https://github.com/everfu)",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.17",
"@types/mocha": "^10.0.7",
"@types/node": "^18.19.44",
"@types/stylus": "^0.48.43",
"c8": "^8.0.1",
"chai": "^4.5.0",
"cheerio": "1.0.0-rc.12",
"eslint": "^8.57.0",
"eslint-config-hexo": "^5.0.0",
"hexo": "^7.3.0",
"hexo-renderer-marked": "^6.3.0",
"mocha": "^10.7.3",
"stylus": "^0.64.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"engines": {
"node": ">=14"
},
"dependencies": {
"hexo-util": "^3.3.0"
}
}