-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.1 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
{
"name": "hexo-blockquote2note",
"version": "1.2.1",
"description": "A Hexo plugin that renders blockquotes to note tags of NexT theme.",
"main": "dist/index.js",
"scripts": {
"prepublish ": "pnpm install && pnpm run clean && pnpm run build",
"build": "tsc -b",
"clean": "tsc -b --clean",
"eslint": "eslint .",
"test": "cross-env NODE_OPTIONS='--import tsx' mocha 'test/**/*.test.ts'",
"coverage": "c8 pnpm test"
},
"directories": {
"lib": "./lib"
},
"files": [
"dist/**"
],
"types": "./dist/index.d.ts",
"repository": "BlockLune/hexo-blockquote2note",
"homepage": "https://github.com/BlockLune/hexo-blockquote2note",
"keywords": [
"hexo",
"next-theme"
],
"author": "BlockLune",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@types/chai": "^4.3.16",
"@types/mocha": "^10.0.6",
"c8": "^9.1.0",
"chai": "^5.1.1",
"cross-env": "^7.0.3",
"eslint": "^9.3.0",
"eslint-config-hexo": "^5.0.0",
"mocha": "^10.4.0",
"tsx": "^4.10.5",
"typescript": "^5.4.5"
},
"dependencies": {
"hexo": "^7.2.0"
}
}