-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.25 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
{
"name": "fixit-cli",
"type": "module",
"version": "1.2.1",
"packageManager": "[email protected]",
"description": "A cli tool for FixIt theme.",
"author": "Lruihao (https://lruihao.cn)",
"license": "MIT",
"homepage": "https://github.com/hugo-fixit/fixit-cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/hugo-fixit/fixit-cli.git"
},
"bugs": {
"url": "https://github.com/hugo-fixit/fixit-cli/issues"
},
"keywords": [
"fixit-cli",
"fixit",
"hugo",
"nodejs"
],
"exports": {
".": "./dist/index.js"
},
"bin": {
"fixit": "./dist/bin/cli.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc",
"start": "tsc && node ./dist/bin/cli.js",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"release": "fixit-releaser changelog"
},
"dependencies": {
"@clack/prompts": "^0.9.0",
"commander": "^13.0.0",
"picocolors": "^1.1.1",
"shelljs": "^0.8.5",
"simple-git": "^3.27.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.12.1",
"@hugo-fixit/fixit-releaser": "^1.0.4",
"@types/node": "^22.10.5",
"@types/shelljs": "^0.8.15",
"eslint": "^9.17.0",
"typescript": "^5.7.2"
}
}