-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.27 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
{
"name": "@metaio/hexo-filter-meta-space",
"version": "1.0.0",
"description": "Merge configs from meta space config file to hexo.",
"license": "MIT",
"author": "Meta Network Group",
"homepage": "https://github.com/Meta-Network/hexo-filter-meta-space#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Meta-Network/hexo-filter-meta-space.git"
},
"bugs": {
"url": "https://github.com/Meta-Network/hexo-filter-meta-space/issues"
},
"publishConfig": {
"access": "public"
},
"main": "index.js",
"scripts": {
"format": "prettier --write \"*.js\"",
"lint": "eslint \"*.js\" --fix",
"prepare": "husky install"
},
"dependencies": {
"hexo-fs": "^3.1.0",
"hexo-util": "^2.4.0",
"picocolors": "^1.0.0"
},
"devDependencies": {
"@types/hexo-fs": "^0.2.10",
"@types/hexo-util": "^0.6.3",
"@types/node": "^16.11.6",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.6",
"prettier": "^2.4.1"
},
"peerDependencies": {
"hexo": "^6.0.0"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix"
}
}