-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
68 lines (68 loc) · 1.61 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
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "csdnsynchexo",
"version": "4.0.2",
"description": "支持csdn/博客园/掘金/segmentfault/腾讯云加社区等平台一键迁移hexo",
"main": "dist/src/index.js",
"module": "dist/src/index.js",
"type": "module",
"scripts": {
"start": "ENV=DEBUG tsx ./src/cli.ts --config ./config.json",
"start:js": "ENV=DEBUG node dist/src/cli.js --config ./config.json",
"build": "rm -rf ./dist && tsc",
"prepublish": "npm run build",
"patch": "npm version patch",
"prepatch": "npm version prepatch",
"minor": "npm version minor",
"prepare": "husky"
},
"bin": {
"hsync": "./dist/src/cli.js"
},
"directories": {
"test": "tests"
},
"dependencies": {
"axios": "^0.21.0",
"chalk": "^4.1.0",
"cheerio": "^1.0.0",
"commander": "^6.2.0",
"filenamify": "^4.2.0",
"fs-extra": "^11.2.0",
"glob": "^8.0.3",
"picgo": "^1.5.0",
"sitdown": "^1.1.6"
},
"devDependencies": {
"@types/fs-extra": "^11.0.0",
"@types/glob": "^8.0.0",
"@types/node": "^18.0.0",
"husky": "^9.1.6",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
"tsx": "^4.19.1",
"typescript": "^5.5.3"
},
"files": [
"dist"
],
"keywords": [
"csdn",
"hexo",
"markdown",
"juejin",
"tencent"
],
"repository": {
"type": "git",
"url": "git+https://github.com/flytam/CsdnSyncHexo.git"
},
"bugs": {
"url": "https://github.com/flytam/CsdnSyncHexo/issues"
},
"homepage": "https://github.com/flytam/CsdnSyncHexo#readme",
"author": "flytam",
"license": "MIT",
"_": {
"pre-commit": "npx pretty-quick --staged"
}
}