-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.12 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
{
"name": "hexo-uuidlink",
"version": "0.0.1",
"description": "This plugin allows you to add UUID-based permalinks to hexo articles.",
"main": "lib/uuidlink.js",
"scripts": {
"build": "webpack --config ./webpack.config.js",
"test": "tsc --module commonjs --allowSyntheticDefaultImports true --outDir ./test ./src/components/Parser.ts && mocha"
},
"files": [
"lib/**"
],
"repository": "inspiration-lab/hexo-uuidlink",
"keywords": [
"uuid",
"hexo",
"link",
"plugin"
],
"author": "clxering <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/hexo": "^3.8.8",
"@types/hexo-fs": "^0.2.10",
"@types/uuid": "^9.0.2",
"hexo": "^6.3.0",
"chai": "^4.3.7",
"clean-webpack-plugin": "^4.0.0",
"mocha": "^10.2.0",
"ts-loader": "^9.4.4",
"typescript": "^5.1.6",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"hexo-fs": "^4.1.1",
"uuid": "^9.0.0"
}
}